Changeset 837
- Timestamp:
- 09/17/07 12:31:21 (6 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 edited
-
editor/_source/commandclasses/fckindentcommands.js (modified) (2 diffs)
-
fckconfig.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/commandclasses/fckindentcommands.js
r836 r837 90 90 var path = new FCKElementPath( startContainer ) ; 91 91 var firstBlock = path.Block || path.BlockLimit ; 92 if ( !firstBlock ) 93 return FCK_TRISTATE_DISABLED ; 94 92 95 if ( FCKIndentCommand._UseIndentClasses ) 93 96 { … … 178 181 while ( endContainer && ! endContainer.nodeName.IEquals( ['li', 'ul', 'ol'] ) ) 179 182 endContainer = endContainer.parentNode ; 183 184 if ( ! startContainer || ! endContainer ) 185 return ; 186 180 187 range.SetStart( startContainer, 1 ) ; 181 188 range.SetEnd( endContainer, 2 ) ; 182 183 if ( ! startContainer || ! endContainer )184 return ;185 189 186 190 // Now we can iterate over the individual items. -
FCKeditor/trunk/fckconfig.js
r835 r837 40 40 FCKConfig.StartupShowBlocks = false ; 41 41 42 FCKConfig.Debug = true ;42 FCKConfig.Debug = false ; 43 43 FCKConfig.AllowQueryStringDebug = true ; 44 44
Note: See TracChangeset
for help on using the changeset viewer.
