Changeset 3003:f8c097e1f7c5 for plugins/dcLegacyEditor/js/jsToolBar
- Timestamp:
- 05/02/15 13:57:50 (10 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcLegacyEditor/js/jsToolBar/jsToolBar.js
r2614 r3003 41 41 this.toolbar = document.createElement("div"); 42 42 this.toolbar.className = 'jstElements'; 43 this.editor.parentNode.insertBefore(this.toolbar,this.editor); 43 44 if (this.toolbar_bottom) { 45 this.editor.parentNode.insertBefore(this.toolbar,this.editor.nextSibling); 46 } else { 47 this.editor.parentNode.insertBefore(this.toolbar,this.editor); 48 } 44 49 45 50 // Dragable resizing (only for gecko) … … 142 147 mode: 'xhtml', 143 148 elements: {}, 149 toolbar_bottom: false, 144 150 145 151 getMode: function() {
Note: See TracChangeset
for help on using the changeset viewer.