Changeset 833

Show
Ignore:
Timestamp:
2007-09-17 05:17:13 (15 months ago)
Author:
martinkou
Message:

Fixed another \s error in quoted regular expression.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/commandclasses/fckjustifycommands.js

    r832 r833  
    4949 
    5050        if ( cssClassName && cssClassName.length > 0 ) 
    51                 this._CssClassRegex = new RegExp( '(?:^|\s+)' + cssClassName + '(?=$|\s)' ) ; 
     51                this._CssClassRegex = new RegExp( '(?:^|\\s+)' + cssClassName + '(?=$|\\s)' ) ; 
    5252} 
    5353