PluginProbe
Vimeography: Vimeo Video Gallery WordPress Plugin / 2.2
Vimeography: Vimeo Video Gallery WordPress Plugin v2.2
2.4.9 2.4.8 trunk 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.6 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.8.1 0.6.9 0.6.9.1 0.6.9.2 0.7 0.8 All 103 releases
vimeography / lib / admin / assets / js / mce.js

mce.js in Vimeography: Vimeo Video Gallery WordPress Plugin 2.2, at lib/admin/assets/js/mce.js

21 lines 751 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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