Changeset 3924
- Timestamp:
- 07/17/09 13:04:39 (4 years ago)
- Location:
- CKEditor/trunk/_source
- Files:
-
- 2 edited
-
plugins/styles/plugin.js (modified) (2 diffs)
-
tests/core/tools.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/styles/plugin.js
r3922 r3924 802 802 return ' ' ; 803 803 else if ( offset == 0 ) // beginning of block 804 return CKEDITOR.tools.rep lace( ' ', match.length - 1 ) + ' ';804 return CKEDITOR.tools.repeat( ' ', match.length - 1 ) + ' '; 805 805 else // end of block 806 return ' ' + CKEDITOR.tools.rep lace( ' ', match.length - 1 );806 return ' ' + CKEDITOR.tools.repeat( ' ', match.length - 1 ); 807 807 } ) ; 808 808 … … 813 813 function ( match ) 814 814 { 815 return CKEDITOR.tools.rep lace( ' ', match.length - 1 ) + ' ' ;815 return CKEDITOR.tools.repeat( ' ', match.length - 1 ) + ' ' ; 816 816 } ) ; 817 817 -
CKEditor/trunk/_source/tests/core/tools.html
r3889 r3924 155 155 }, 156 156 157 test_ multiple: function()157 test_repeat : function() 158 158 { 159 assert.areSame( ' ', CKEDITOR.tools.rep lace( ' ', 3 ) );159 assert.areSame( ' ', CKEDITOR.tools.repeat( ' ', 3 ) ); 160 160 }, 161 161
Note: See TracChangeset
for help on using the changeset viewer.
