Przeglądaj źródła

Removed an unnecessary argument passed to define().

fredck 11 lat temu
rodzic
commit
ef856f4fec
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/build/start.frag

+ 1 - 1
src/build/start.frag

@@ -19,7 +19,7 @@
 	// Make the build an AMD module.
 	// https://github.com/amdjs/amdjs-api/wiki/AMD#defineamd-property-
 	if ( typeof define == 'function' && define.amd ) {
-		define( [], function() {
+		define( function() {
 			return root.CKEDITOR;
 		} );
 	}