Mercurial > hg > soundsoftware-site
comparison public/javascripts/jstoolbar/jstoolbar.js @ 1115:433d4f72a19b redmine-2.2
Update to Redmine SVN revision 11137 on 2.2-stable branch
author | Chris Cannam |
---|---|
date | Mon, 07 Jan 2013 12:01:42 +0000 |
parents | 513646585e45 |
children | 622f24f53b42 |
comparison
equal
deleted
inserted
replaced
929:5f33065ddc4b | 1115:433d4f72a19b |
---|---|
42 | 42 |
43 this.toolbar = document.createElement("div"); | 43 this.toolbar = document.createElement("div"); |
44 this.toolbar.className = 'jstElements'; | 44 this.toolbar.className = 'jstElements'; |
45 this.editor.parentNode.insertBefore(this.toolbar,this.editor); | 45 this.editor.parentNode.insertBefore(this.toolbar,this.editor); |
46 | 46 |
47 // Dragable resizing (only for gecko) | 47 // Dragable resizing |
48 if (this.editor.addEventListener) | 48 if (this.editor.addEventListener && navigator.appVersion.match(/\bMSIE\b/)) |
49 { | 49 { |
50 this.handle = document.createElement('div'); | 50 this.handle = document.createElement('div'); |
51 this.handle.className = 'jstHandle'; | 51 this.handle.className = 'jstHandle'; |
52 var dragStart = this.resizeDragStart; | 52 var dragStart = this.resizeDragStart; |
53 var This = this; | 53 var This = this; |