Changeset 429
- Timestamp:
- 09/01/07 22:56:46 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_parser/wymeditor/jquery.wymeditor.safari.js
r329 r429 104 104 WymClassSafari.prototype._exec = function(cmd,param) { 105 105 param = param || null; 106 if( $j.browser.version >= 522|| typeof this[cmd] == 'undefined'){106 if(true || $j.browser.version >= 10000 || typeof this[cmd] == 'undefined'){ 107 107 this._doc.execCommand(cmd,false,param); 108 108 }else{ … … 219 219 220 220 WymClassSafari.prototype.removeSafarihacks = function(raw_html){ 221 if( $j.browser.version < 522){221 if(true || $j.browser.version < 10000){ 222 222 raw_html = raw_html.replace(this.hackChar,''); 223 223 } … … 305 305 WymClassSafari.prototype.handleEnter = function(evt){ 306 306 var selected = this.selected(); 307 if( $j.browser.version < 522){307 if(true || $j.browser.version < 10000){ 308 308 309 309 if(evt.shiftKey){ … … 323 323 WymClassSafari.prototype.handleBackspace = function(){ 324 324 var selected = this.selected(); 325 if( $j.browser.version < 522){325 if(true || $j.browser.version < 10000){ 326 326 if(selected.tagName == 'P' && selected.innerHTML == ''){ 327 327 // Todo: move caret to the end of previous sibling
Note: See TracChangeset
for help on using the changeset viewer.