Преглед изворни кода

Removed an unnecessary argument passed to define().

fredck пре 11 година
родитељ
комит
ef856f4fec
1 измењених фајлова са 1 додато и 1 уклоњено
  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;
 		} );
 	}