Sfoglia il codice sorgente

Removed an unnecessary argument passed to define().

fredck 11 anni fa
parent
commit
ef856f4fec
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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;
 		} );
 	}