-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.js
67 lines (53 loc) · 1.59 KB
/
init.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
jQuery(document).ready(function(){
/*
Simple Image Block Override
*/
SirTrevor.Blocks.Image = SirTrevor.Block.extend({
type: "Image",
droppable: false,
uploadable: true,
icon_name: 'image',
loadData: function(data){
// Create our image tag
this.$editor.html(jQuery('<img>', { src: data.file.url }));
},
onUploadComplete: function(props, attachment){
data = {
file: {
url: attachment.url,
id: attachment.id,
width: attachment.width,
height: attachment.height,
filename: attachment.filename
}
};
this.$inputs.hide();
this.$editor.html(jQuery('<img>', { src: attachment.url })).show();
this.setData(data);
this.ready();
},
onUploadButtonClicked: function(ev){
ev.preventDefault();
var button = jQuery(ev.currentTarget);
wp.media.editor.send.attachment = _.bind(this.onUploadComplete, this);
wp.media.editor.open(button);
},
onBlockRender: function(){
/* Setup the upload button */
var _editor = this;
this.$inputs.find('input').hide();
this.$inputs.find('button').bind('click', _.bind(this.onUploadButtonClicked, this));
}
});
SirTrevor.DEBUG = false;
SirTrevor.setBlockOptions("Tweet", {
fetchUrl: function(tweetID) {
return ajaxurl+"?action=sir_trevor_js_twitter_fetch&id="+tweetID;
}
});
jQuery('.acf_postbox .field_type-wysiwyg textarea, #content.wp-editor-area').each( function() {
new SirTrevor.Editor({
el: jQuery(this)
});
})
});