Sha256: 8192a25b90d2245de11a11f4a0289165d56f18239f5782f5d4eb08504d83fb18
Contents?: true
Size: 428 Bytes
Versions: 4
Compression:
Stored size: 428 Bytes
Contents
/** * $Id: EditorCommands.js 1042 2009-03-04 16:00:50Z spocke $ * * @author Moxiecode * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. */ (function(tinymce) { tinymce.GlobalCommands.add('InsertHorizontalRule', function() { if (tinymce.isOpera) return this.getDoc().execCommand('InsertHorizontalRule', false, ''); this.selection.setContent('<hr />'); }); })(tinymce);
Version data entries
4 entries across 4 versions & 2 rubygems