Ticket #3517: 3517.patch
File 3517.patch, 1.9 KB (added by , 14 years ago) |
---|
-
_source/plugins/find/dialogs/find.js
425 425 var finder = { 426 426 searchRange : null, 427 427 matchRange : null, 428 find : function( pattern, matchCase, matchWord, matchCyclic, highlightMatched )428 find : function( pattern, matchCase, matchWord, matchCyclic, highlightMatched, cyclicRerun ) 429 429 { 430 430 if( !this.matchRange ) 431 431 this.matchRange = … … 480 480 this.matchRange.removeHighlight(); 481 481 // Clear current session and restart with the default search 482 482 // range. 483 if ( matchCyclic )483 if ( matchCyclic && !cyclicRerun ) 484 484 { 485 485 this.searchRange = getSearchRange( true ); 486 486 this.matchRange = null; 487 // Clone arguments 488 var newArgs = []; 489 for ( var i = 0 ; i < arguments.length ; i++ ) 490 newArgs[ i ] = arguments[ i ]; 491 // Set cyclicRerun flag to avoid infinitive loop. 492 newArgs[ 5 ] = true; 493 return arguments.callee.apply( this, newArgs ); 487 494 } 488 495 489 496 return false; -
CHANGES.html
61 61 <li><a href="http://dev.fckeditor.net/ticket/3633">#3633</a> : Default context menu isn't disabled in toolbar, status bar, panels...</li> 62 62 <li><a href="http://dev.fckeditor.net/ticket/3897">#3897</a> : Now there is no image previews when the URL is empty in image dialog.</li> 63 63 <li><a href="http://dev.fckeditor.net/ticket/4048">#4048</a> : Context submenu was lacking uiColor.</li> 64 <li><a href="http://dev.fckeditor.net/ticket/3517">#3517</a> : Fixed "Match cyclic" field in Find & Replace dialog.</li> 64 65 </ul> 65 66 <h3> 66 67 CKEditor 3.0</h3>