| 1 |
// JavaScript Document |
| 2 |
(function() { |
| 3 |
tinymce.create('tinymce.plugins.vimeography', { |
| 4 |
init : function(ed, url) { |
| 5 |
ed.addButton('vimeography', { |
| 6 |
title : 'Add Vimeography Gallery', |
| 7 |
image : url+'/mce-button.png', |
| 8 |
onclick : function() { |
| 9 |
//ed.selection.setContent('[vimeography]' + ed.selection.getContent() + '[/vimeography]'); |
| 10 |
tb_show('Add Vimeography Gallery','#TB_inline?width=480&inlineId=select_vimeography_gallery',false); |
| 11 |
|
| 12 |
} |
| 13 |
}); |
| 14 |
}, |
| 15 |
createControl : function(n, cm) { |
| 16 |
return null; |
| 17 |
}, |
| 18 |
}); |
| 19 |
tinymce.PluginManager.add('vimeography', tinymce.plugins.vimeography); |
| 20 |
})(); |
| 21 |
|