PATH:
home
/
letacommog
/
letaweb
/
assets
/
1c15cee9
/
redactor
/
plugins
/
clips
if (!RedactorPlugins) var RedactorPlugins = {}; RedactorPlugins.clips = { init: function() { var callback = $.proxy(function() { $('#redactor_modal').find('.redactor_clip_link').each($.proxy(function(i, s) { $(s).click($.proxy(function() { this.insertClip($(s).next().html()); return false; }, this)); }, this)); this.selectionSave(); this.bufferSet(); }, this ); this.buttonAdd('clips', 'Clips', function(e) { this.modalInit('Clips', '#clipsmodal', 500, callback); }); }, insertClip: function(html) { this.selectionRestore(); this.insertHtml($.trim(html)); this.modalClose(); } };
[+]
..
[-] clips.css
[edit]
[-] index.html
[edit]
[-] clips.js
[edit]