Changeset 7036 for CKEditor/trunk
- Timestamp:
- 06/10/11 12:43:32 (2 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 5 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/button/plugin.js (modified) (1 diff)
-
_source/plugins/listblock/plugin.js (modified) (1 diff)
-
_source/plugins/menu/plugin.js (modified) (1 diff)
-
_source/plugins/richcombo/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r7035 r7036 102 102 <li><a href="http://dev.ckeditor.com/ticket/7566">#7566</a> : BiDi: Increasing indentation of a list item changes the language direction.</li> 103 103 <li><a href="http://dev.ckeditor.com/ticket/7839">#7839</a> : [IE] Pasting multi-level numbered lists from Microsoft Word does not work properly.</li> 104 <li><a href="http://dev.ckeditor.com/ticket/188">#188</a> : [IE] Object selection was making the toolbar inactive in some situations.</li> 104 105 <li>Updated the following language files:<ul> 105 106 <li><a href="http://dev.ckeditor.com/ticket/7834">#7834</a> : Dutch;</li> -
CKEditor/trunk/_source/plugins/button/plugin.js
r7027 r7036 211 211 output.push( 212 212 ' onkeydown="return CKEDITOR.tools.callFunction(', keydownFn, ', event);"' + 213 ' onfocus="return CKEDITOR.tools.callFunction(', focusFn,', event);"' + 214 ' onclick="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' + 213 ' onfocus="return CKEDITOR.tools.callFunction(', focusFn,', event);" ' + 214 ( CKEDITOR.env.ie ? 'onclick="return false;" onmouseup' : 'onclick' ) + // #188 215 '="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' + 215 216 '<span class="cke_icon"' ); 216 217 -
CKEditor/trunk/_source/plugins/listblock/plugin.js
r7027 r7036 97 97 '<a id="', id, '_option" _cke_focus=1 hidefocus=true' + 98 98 ' title="', title || value, '"' + 99 ' href="javascript:void(\'', value, '\')"' + 100 ' onclick="CKEDITOR.tools.callFunction(', this._.getClick(), ',\'', value, '\'); return false;"', 99 ' href="javascript:void(\'', value, '\')" ' + 100 ( CKEDITOR.env.ie ? 'onclick="return false;" onmouseup' : 'onclick' ) + // #188 101 '="CKEDITOR.tools.callFunction(', this._.getClick(), ',\'', value, '\'); return false;"', 101 102 ' role="option"' + 102 103 ' aria-posinset="' + ++this._.size + '">', -
CKEditor/trunk/_source/plugins/menu/plugin.js
r7027 r7036 479 479 // ' onkeydown="return CKEDITOR.ui.button._.keydown(', index, ', event);"' + 480 480 ' onmouseover="CKEDITOR.tools.callFunction(', menu._.itemOverFn, ',', index, ');"' + 481 ' onmouseout="CKEDITOR.tools.callFunction(', menu._.itemOutFn, ',', index, ');"' + 482 ' onclick="CKEDITOR.tools.callFunction(', menu._.itemClickFn, ',', index, '); return false;"' + 481 ' onmouseout="CKEDITOR.tools.callFunction(', menu._.itemOutFn, ',', index, ');" ' + 482 ( CKEDITOR.env.ie ? 'onclick="return false;" onmouseup' : 'onclick' ) + // #188 483 '="CKEDITOR.tools.callFunction(', menu._.itemClickFn, ',', index, '); return false;"' + 483 484 '>' + 484 485 '<span class="cke_icon_wrapper"><span class="cke_icon"' + -
CKEditor/trunk/_source/plugins/richcombo/plugin.js
r7027 r7036 200 200 output.push( 201 201 ' onkeydown="CKEDITOR.tools.callFunction( ', keyDownFn, ', event, this );"' + 202 ' onfocus="return CKEDITOR.tools.callFunction(', focusFn, ', event);"' + 203 ' onclick="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' + 202 ' onfocus="return CKEDITOR.tools.callFunction(', focusFn, ', event);" ' + 203 ( CKEDITOR.env.ie ? 'onclick="return false;" onmouseup' : 'onclick' ) + // #188 204 '="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' + 204 205 '<span>' + 205 206 '<span id="' + id + '_text" class="cke_text cke_inline_label">' + this.label + '</span>' +
Note: See TracChangeset
for help on using the changeset viewer.
