penguin/AstroJS

Javascript framework for my blog

commit bbf4f47e8611b291924cc970dd6f60de91288f1a

author斟酌 鵬兄 <tgckpg@gmail.com>
date2016-03-16T11:03:06Z
subjectRemove the license header inside js files
commit bbf4f47e8611b291924cc970dd6f60de91288f1a
Author: 斟酌 鵬兄 <tgckpg@gmail.com>
Date:   2016-03-16T11:03:06Z

    Remove the license header inside js files
---
 AD_LICENSE                       |  5 +++++
 botanjs/src/System/utils/Perf.js |  5 -----
 botanjs/src/_this.js             | 14 --------------
 3 files changed, 5 insertions(+), 19 deletions(-)

diff --git a/AD_LICENSE b/AD_LICENSE
new file mode 100644
index 0000000..66cdb1e
--- /dev/null
+++ b/AD_LICENSE
@@ -0,0 +1,5 @@
+/**
+ * author: Jeff Ward (jcward.com).
+ * license: MIT license
+ * link: http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/21963136#21963136
+ **/
diff --git a/botanjs/src/System/utils/Perf.js b/botanjs/src/System/utils/Perf.js
index 237ee47..4b0c82e 100644
--- a/botanjs/src/System/utils/Perf.js
+++ b/botanjs/src/System/utils/Perf.js
@@ -2,11 +2,6 @@
 	// Performance Functions
 	var ns = __namespace( "System.utils.Perf" );
 
-	/** {{{ Fast UUID generator, RFC4122 version 4 compliant.
-	 * author: Jeff Ward (jcward.com).
-	 * license: MIT license
-	 * link: http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/21963136#21963136
-	 **/
 	var lut = [];
 	for ( var i=0; i < 256; i++ )
 	{
diff --git a/botanjs/src/_this.js b/botanjs/src/_this.js
index 0f6371e..18a7c10 100644
--- a/botanjs/src/_this.js
+++ b/botanjs/src/_this.js
@@ -1,17 +1,3 @@
-/**
- * BotanJS
- * http://botanjs.astropenguin.net/
- *
- * @version
- * 0.9.0b (August 14 2015)
- * 
- * @copyright
- * Copyright (C) 2014-2015 tgckpg.
- *
- * @license
- * Licensed under GPL licenses.
- */
-
 /*{{{ Shorthand Functions */
 var __extends = function( obj, target ) {
 	obj.prototype = Object.create( target.prototype );