-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.js
80 lines (62 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
jQuery(document).ready(function () {
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(attachment, win) {
data = {
file: {
url: attachment.url,
id: attachment.id,
width: attachment.width,
height: attachment.height,
filename: attachment.name
}
};
this.$inputs.hide();
this.$editor.html(jQuery('<img>', { src: attachment.url })).show();
this.setData(data);
this.ready();
win.close();
},
onUploadButtonClicked: function(ev){
ev.preventDefault();
var button = jQuery(ev.currentTarget);
this.imceOpen();
},
onBlockRender: function(){
/* Setup the upload button */
var _editor = this;
this.$inputs.find('input').hide();
this.$inputs.find('button').bind('click', _.bind(this.onUploadButtonClicked, this));
},
imceOpen: function() {
window.sir_trevor_drupal_imceload = _.bind(function(win) {
win.imce.setSendTo('Add file to content', _.bind(this.onUploadComplete, this));
}, this);
var url = this.imceUrl() + '?app=sir_trevor_drupal|imceload@sir_trevor_drupal_imceload|';
window.open(url, '', 'width=760,height=560,resizable=1');
},
imceUrl: function() {
return Drupal.settings.sir_trevor_drupal.imceURL;
},
imceCreatePopup: function(content) {
jQuery('body').append(content);
}
});
SirTrevor.setBlockOptions("Tweet", {
fetchUrl: function(tweetID) {
return Drupal.settings.basePath+"sir_trevor_drupal/tweet_fetch/"+tweetID;
}
});
jQuery('.sir-trevor-js').each( function() {
new SirTrevor.Editor({
el: jQuery(this)
});
});
});