Sha256: c229dc4efb44b3d0091a76f7fd8276a2dfd4f5b3707072db72bb2727cdf43840
Contents?: true
Size: 801 Bytes
Versions: 11
Compression:
Stored size: 801 Bytes
Contents
CKEDITOR.plugins.add('move_content', { icons:'movecontentup,movecontentdown', init:function (editor) { editor.ui.addButton('MoveContentUp', { label:'Move this content up', command:'moveContentUp', toolbar:'tools' }); editor.ui.addButton('MoveContentDown', { label:'Move this content down.', command:'moveContentDown', toolbar:'tools' }); editor.addCommand('moveContentDown', { exec:function (editor) { $.cms_editor.moveContent(editor, 'move-down'); } }); editor.addCommand('moveContentUp', { exec:function (editor) { $.cms_editor.moveContent(editor, 'move-up'); } }); } });
Version data entries
11 entries across 11 versions & 2 rubygems