Index: /CKEditor/branches/versions/3.2.x/_source/plugins/a11ycompat/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/a11ycompat/plugin.js	(revision 5151)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/a11ycompat/plugin.js	(revision 5152)
@@ -67,5 +67,5 @@
 
 			var parent;
-			while( ( parent = element.getParent() ) && !parent.getDtd()[ fieldset.getName() ] )
+			while ( ( parent = element.getParent() ) && !parent.getDtd()[ fieldset.getName() ] )
 				element = parent;
 			fieldset.insertBefore( element );
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/a11yhelp/dialogs/a11yhelp.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/a11yhelp/dialogs/a11yhelp.js	(revision 5151)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/a11yhelp/dialogs/a11yhelp.js	(revision 5152)
@@ -116,5 +116,5 @@
 		{
 			definition = keystrokes[ i ];
-			if( definition[ 1 ] == name )
+			if ( definition[ 1 ] == name )
 				break;
 		}
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/contextmenu/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/contextmenu/plugin.js	(revision 5151)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/contextmenu/plugin.js	(revision 5152)
@@ -82,5 +82,5 @@
 					// of upper level menu.
 					// 2. In case of a top-menu, close it.
-					if( parent )
+					if ( parent )
 					{
 						parent._.panel.hideChild();
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/dialog/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/dialog/plugin.js	(revision 5151)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/dialog/plugin.js	(revision 5152)
@@ -258,5 +258,5 @@
 				{
 					// Mimics browser tab order logics;
-					if( a.tabIndex != b.tabIndex )
+					if ( a.tabIndex != b.tabIndex )
 						return b.tabIndex - a.tabIndex;
 					//  Sort is not stable in some browsers,
@@ -407,5 +407,5 @@
 				setupFocus();
 
-				if( editor.config.dialog_startupFocusTab
+				if ( editor.config.dialog_startupFocusTab
 					&& me._.tabIdList.length > 1 )
 				{
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js	(revision 5151)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js	(revision 5152)
@@ -442,5 +442,5 @@
 					 stylesSetName = customStylesConfig && customStylesConfig.split( ':' )[ 0 ];
 				
-				if( stylesSetName )
+				if ( stylesSetName )
 				{
 					CKEDITOR.stylesSet.load( stylesSetName,
@@ -456,5 +456,5 @@
 								{
 									var styleDefinition = stylesDefinitions[ i ];
-									if( styleDefinition.element && styleDefinition.element == 'div' )
+									if ( styleDefinition.element && styleDefinition.element == 'div' )
 									{
 										styleName = styleDefinition.name;
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/toolbar/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/toolbar/plugin.js	(revision 5151)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/toolbar/plugin.js	(revision 5152)
@@ -71,5 +71,5 @@
 							next = item.next;
 
-							if( !next )
+							if ( !next )
 							{
 								nextToolGroup = item.toolbar.next;
@@ -77,5 +77,5 @@
 
 								// Bypass the empty toolgroups.
-								while( groupItemsCount === 0 )
+								while ( groupItemsCount === 0 )
 								{
 									nextToolGroup = nextToolGroup.next;
@@ -83,5 +83,5 @@
 								}
 
-								if( nextToolGroup )
+								if ( nextToolGroup )
 									next = nextToolGroup.items[ 0 ];
 							}
@@ -107,5 +107,5 @@
 							next = item.previous;
 
-							if( !next )
+							if ( !next )
 							{
 								nextToolGroup = item.toolbar.previous;
@@ -113,5 +113,5 @@
 
 								// Bypass the empty toolgroups.
-								while( groupItemsCount === 0 )
+								while ( groupItemsCount === 0 )
 								{
 									nextToolGroup = nextToolGroup.previous;
@@ -119,5 +119,5 @@
 								}
 								
-								if( nextToolGroup )
+								if ( nextToolGroup )
 									next = nextToolGroup.items[ groupItemsCount - 1 ];
 							}
