Преглед на файлове

Added documentation for the start and end build fragments.

fredck преди 11 години
родител
ревизия
76d64c6b3e
променени са 2 файла, в които са добавени 28 реда и са изтрити 0 реда
  1. 14 0
      src/build/end.frag
  2. 14 0
      src/build/start.frag

+ 14 - 0
src/build/end.frag

@@ -1,3 +1,17 @@
+/**
+ * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
+ */
+
+// This is the code that will go after the compiled source code in the ckeditor.js build.
+//
+// The following are the parts that compose the build:
+//
+//  * start.frag
+//  * Almond.js source code
+//  * CKEditor source code
+//  * end.frag
+
 /************************ end.frag START */
 
 	return require( 'ckeditor' );

+ 14 - 0
src/build/start.frag

@@ -1,3 +1,17 @@
+/**
+ * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
+ */
+
+// This is the code that will precede the compiled source code in the ckeditor.js build.
+//
+// The following are the parts that compose the build:
+//
+//  * start.frag
+//  * Almond.js source code
+//  * CKEditor source code
+//  * end.frag
+
 ( function ( root, factory ) {
 	// Register the CKEDITOR global.
 	root.CKEDITOR = factory();