Merge remote-tracking branch 'origin/master' into Astro

This commit is contained in:
斟酌 鵬兄 2016-03-16 19:06:34 +08:00
commit b1807ebc09
3 changed files with 6 additions and 19 deletions

6
AD_LICENSE Normal file
View File

@ -0,0 +1,6 @@
/**
* 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
**/

View File

@ -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++ )
{

View File

@ -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 );