2015-08-14 16:30:03 +00:00
( function webpackUniversalModuleDefinition ( root , factory ) {
if ( typeof exports === 'object' && typeof module === 'object' )
module . exports = factory ( ) ;
else if ( typeof define === 'function' && define . amd )
define ( factory ) ;
else if ( typeof exports === 'object' )
exports [ "dat" ] = factory ( ) ;
else
root [ "dat" ] = factory ( ) ;
} ) ( this , function ( ) {
return /******/ ( function ( modules ) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = { } ;
/******/
/******/ // The require function
/******/ function _ _webpack _require _ _ ( moduleId ) {
/******/
/******/ // Check if module is in cache
/******/ if ( installedModules [ moduleId ] )
/******/ return installedModules [ moduleId ] . exports ;
/******/
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules [ moduleId ] = {
/******/ exports : { } ,
/******/ id : moduleId ,
/******/ loaded : false
/******/ } ;
/******/
/******/ // Execute the module function
/******/ modules [ moduleId ] . call ( module . exports , module , module . exports , _ _webpack _require _ _ ) ;
/******/
/******/ // Flag the module as loaded
/******/ module . loaded = true ;
/******/
/******/ // Return the exports of the module
/******/ return module . exports ;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ _ _webpack _require _ _ . m = modules ;
/******/
/******/ // expose the module cache
/******/ _ _webpack _require _ _ . c = installedModules ;
/******/
/******/ // __webpack_public_path__
/******/ _ _webpack _require _ _ . p = "" ;
/******/
/******/ // Load entry module and return exports
/******/ return _ _webpack _require _ _ ( 0 ) ;
/******/ } )
/************************************************************************/
/******/ ( [
/* 0 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
'use strict' ;
module . exports = _ _webpack _require _ _ ( 1 ) ;
/***/ } ,
/* 1 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
'use strict' ;
module . exports = {
color : {
Color : _ _webpack _require _ _ ( 2 ) ,
math : _ _webpack _require _ _ ( 6 ) ,
interpret : _ _webpack _require _ _ ( 3 )
} ,
controllers : {
Controller : _ _webpack _require _ _ ( 7 ) ,
BooleanController : _ _webpack _require _ _ ( 8 ) ,
2015-08-14 20:29:30 +00:00
OptionController : _ _webpack _require _ _ ( 10 ) ,
2015-08-14 16:30:03 +00:00
StringController : _ _webpack _require _ _ ( 11 ) ,
NumberController : _ _webpack _require _ _ ( 12 ) ,
NumberControllerBox : _ _webpack _require _ _ ( 13 ) ,
NumberControllerSlider : _ _webpack _require _ _ ( 14 ) ,
FunctionController : _ _webpack _require _ _ ( 20 ) ,
ColorController : _ _webpack _require _ _ ( 21 )
} ,
dom : {
2015-08-14 20:29:30 +00:00
dom : _ _webpack _require _ _ ( 9 )
2015-08-14 16:30:03 +00:00
} ,
gui : {
GUI : _ _webpack _require _ _ ( 22 )
} ,
GUI : _ _webpack _require _ _ ( 22 )
} ;
/***/ } ,
/* 2 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
var _interpret = _ _webpack _require _ _ ( 3 ) ;
var _interpret2 = _interopRequireDefault ( _interpret ) ;
var _math = _ _webpack _require _ _ ( 6 ) ;
var _math2 = _interopRequireDefault ( _math ) ;
var _toString = _ _webpack _require _ _ ( 4 ) ;
var _toString2 = _interopRequireDefault ( _toString ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
var Color = ( function ( ) {
function Color ( ) {
_classCallCheck ( this , Color ) ;
this . _ _state = _interpret2 [ 'default' ] . apply ( this , arguments ) ;
if ( this . _ _state === false ) {
2015-08-14 22:16:18 +00:00
throw new Error ( 'Failed to interpret color arguments' ) ;
2015-08-14 16:30:03 +00:00
}
this . _ _state . a = this . _ _state . a || 1 ;
}
2015-08-14 20:29:30 +00:00
Color . prototype . toString = function toString ( ) {
return _toString2 [ 'default' ] ( this ) ;
} ;
Color . prototype . toOriginal = function toOriginal ( ) {
return this . _ _state . conversion . write ( this ) ;
} ;
2015-08-14 16:30:03 +00:00
return Color ;
} ) ( ) ;
Color . recalculateRGB = function ( color , component , componentHexIndex ) {
if ( color . _ _state . space === 'HEX' ) {
color . _ _state [ component ] = _math2 [ 'default' ] . component _from _hex ( color . _ _state . hex , componentHexIndex ) ;
} else if ( color . _ _state . space === 'HSV' ) {
_utilsCommon2 [ 'default' ] . extend ( color . _ _state , _math2 [ 'default' ] . hsv _to _rgb ( color . _ _state . h , color . _ _state . s , color . _ _state . v ) ) ;
} else {
2015-08-14 22:16:18 +00:00
throw new Error ( 'Corrupted color state' ) ;
2015-08-14 16:30:03 +00:00
}
} ;
Color . recalculateHSV = function ( color ) {
var result = _math2 [ 'default' ] . rgb _to _hsv ( color . r , color . g , color . b ) ;
_utilsCommon2 [ 'default' ] . extend ( color . _ _state , {
s : result . s ,
v : result . v
} ) ;
if ( ! _utilsCommon2 [ 'default' ] . isNaN ( result . h ) ) {
color . _ _state . h = result . h ;
} else if ( _utilsCommon2 [ 'default' ] . isUndefined ( color . _ _state . h ) ) {
color . _ _state . h = 0 ;
}
} ;
Color . COMPONENTS = [ 'r' , 'g' , 'b' , 'h' , 's' , 'v' , 'hex' , 'a' ] ;
defineRGBComponent ( Color . prototype , 'r' , 2 ) ;
defineRGBComponent ( Color . prototype , 'g' , 1 ) ;
defineRGBComponent ( Color . prototype , 'b' , 0 ) ;
defineHSVComponent ( Color . prototype , 'h' ) ;
defineHSVComponent ( Color . prototype , 's' ) ;
defineHSVComponent ( Color . prototype , 'v' ) ;
Object . defineProperty ( Color . prototype , 'a' , {
get : function get ( ) {
return this . _ _state . a ;
} ,
set : function set ( v ) {
this . _ _state . a = v ;
}
} ) ;
Object . defineProperty ( Color . prototype , 'hex' , {
get : function get ( ) {
if ( ! this . _ _state . space !== 'HEX' ) {
this . _ _state . hex = _math2 [ 'default' ] . rgb _to _hex ( this . r , this . g , this . b ) ;
}
return this . _ _state . hex ;
} ,
set : function set ( v ) {
this . _ _state . space = 'HEX' ;
this . _ _state . hex = v ;
}
} ) ;
function defineRGBComponent ( target , component , componentHexIndex ) {
Object . defineProperty ( target , component , {
get : function get ( ) {
if ( this . _ _state . space === 'RGB' ) {
return this . _ _state [ component ] ;
}
Color . recalculateRGB ( this , component , componentHexIndex ) ;
return this . _ _state [ component ] ;
} ,
set : function set ( v ) {
if ( this . _ _state . space !== 'RGB' ) {
Color . recalculateRGB ( this , component , componentHexIndex ) ;
this . _ _state . space = 'RGB' ;
}
this . _ _state [ component ] = v ;
}
} ) ;
}
function defineHSVComponent ( target , component ) {
Object . defineProperty ( target , component , {
get : function get ( ) {
2015-08-14 20:29:30 +00:00
if ( this . _ _state . space === 'HSV' ) {
return this . _ _state [ component ] ;
}
2015-08-14 16:30:03 +00:00
Color . recalculateHSV ( this ) ;
return this . _ _state [ component ] ;
} ,
set : function set ( v ) {
if ( this . _ _state . space !== 'HSV' ) {
Color . recalculateHSV ( this ) ;
this . _ _state . space = 'HSV' ;
}
this . _ _state [ component ] = v ;
}
} ) ;
}
exports [ 'default' ] = Color ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 3 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
var _toString = _ _webpack _require _ _ ( 4 ) ;
2015-08-14 20:29:30 +00:00
var _toString2 = _interopRequireDefault ( _toString ) ;
2015-08-14 16:30:03 +00:00
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
var INTERPRETATIONS = [
// Strings
{
litmus : _utilsCommon2 [ 'default' ] . isString ,
conversions : {
THREE _CHAR _HEX : {
read : function read ( original ) {
var test = original . match ( /^#([A-F0-9])([A-F0-9])([A-F0-9])$/i ) ;
2015-08-14 20:29:30 +00:00
if ( test === null ) {
return false ;
}
2015-08-14 16:30:03 +00:00
return {
space : 'HEX' ,
2015-08-14 20:29:30 +00:00
hex : parseInt ( '0x' + test [ 1 ] . toString ( ) + test [ 1 ] . toString ( ) + test [ 2 ] . toString ( ) + test [ 2 ] . toString ( ) + test [ 3 ] . toString ( ) + test [ 3 ] . toString ( ) , 0 )
2015-08-14 16:30:03 +00:00
} ;
} ,
2015-08-14 20:29:30 +00:00
write : _toString2 [ 'default' ]
2015-08-14 16:30:03 +00:00
} ,
SIX _CHAR _HEX : {
read : function read ( original ) {
var test = original . match ( /^#([A-F0-9]{6})$/i ) ;
2015-08-14 20:29:30 +00:00
if ( test === null ) {
return false ;
}
2015-08-14 16:30:03 +00:00
return {
space : 'HEX' ,
2015-08-14 20:29:30 +00:00
hex : parseInt ( '0x' + test [ 1 ] . toString ( ) , 0 )
2015-08-14 16:30:03 +00:00
} ;
} ,
2015-08-14 20:29:30 +00:00
write : _toString2 [ 'default' ]
2015-08-14 16:30:03 +00:00
} ,
CSS _RGB : {
read : function read ( original ) {
var test = original . match ( /^rgb\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\)/ ) ;
2015-08-14 20:29:30 +00:00
if ( test === null ) {
return false ;
}
2015-08-14 16:30:03 +00:00
return {
space : 'RGB' ,
r : parseFloat ( test [ 1 ] ) ,
g : parseFloat ( test [ 2 ] ) ,
b : parseFloat ( test [ 3 ] )
} ;
} ,
2015-08-14 20:29:30 +00:00
write : _toString2 [ 'default' ]
2015-08-14 16:30:03 +00:00
} ,
CSS _RGBA : {
read : function read ( original ) {
var test = original . match ( /^rgba\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\,\s*(.+)\s*\)/ ) ;
2015-08-14 20:29:30 +00:00
if ( test === null ) {
return false ;
}
2015-08-14 16:30:03 +00:00
return {
space : 'RGB' ,
r : parseFloat ( test [ 1 ] ) ,
g : parseFloat ( test [ 2 ] ) ,
b : parseFloat ( test [ 3 ] ) ,
a : parseFloat ( test [ 4 ] )
} ;
} ,
2015-08-14 20:29:30 +00:00
write : _toString2 [ 'default' ]
2015-08-14 16:30:03 +00:00
}
}
} ,
// Numbers
{
litmus : _utilsCommon2 [ 'default' ] . isNumber ,
conversions : {
HEX : {
read : function read ( original ) {
return {
space : 'HEX' ,
hex : original ,
conversionName : 'HEX'
} ;
} ,
write : function write ( color ) {
return color . hex ;
}
}
}
} ,
// Arrays
{
litmus : _utilsCommon2 [ 'default' ] . isArray ,
conversions : {
RGB _ARRAY : {
read : function read ( original ) {
2015-08-14 20:29:30 +00:00
if ( original . length !== 3 ) {
return false ;
}
2015-08-14 16:30:03 +00:00
return {
space : 'RGB' ,
r : original [ 0 ] ,
g : original [ 1 ] ,
b : original [ 2 ]
} ;
} ,
write : function write ( color ) {
return [ color . r , color . g , color . b ] ;
}
} ,
RGBA _ARRAY : {
read : function read ( original ) {
2015-08-14 20:29:30 +00:00
if ( original . length !== 4 ) return false ;
2015-08-14 16:30:03 +00:00
return {
space : 'RGB' ,
r : original [ 0 ] ,
g : original [ 1 ] ,
b : original [ 2 ] ,
a : original [ 3 ]
} ;
} ,
write : function write ( color ) {
return [ color . r , color . g , color . b , color . a ] ;
}
}
}
} ,
// Objects
{
litmus : _utilsCommon2 [ 'default' ] . isObject ,
conversions : {
RGBA _OBJ : {
read : function read ( original ) {
if ( _utilsCommon2 [ 'default' ] . isNumber ( original . r ) && _utilsCommon2 [ 'default' ] . isNumber ( original . g ) && _utilsCommon2 [ 'default' ] . isNumber ( original . b ) && _utilsCommon2 [ 'default' ] . isNumber ( original . a ) ) {
return {
space : 'RGB' ,
r : original . r ,
g : original . g ,
b : original . b ,
a : original . a
} ;
}
return false ;
} ,
write : function write ( color ) {
return {
r : color . r ,
g : color . g ,
b : color . b ,
a : color . a
} ;
}
} ,
RGB _OBJ : {
read : function read ( original ) {
if ( _utilsCommon2 [ 'default' ] . isNumber ( original . r ) && _utilsCommon2 [ 'default' ] . isNumber ( original . g ) && _utilsCommon2 [ 'default' ] . isNumber ( original . b ) ) {
return {
space : 'RGB' ,
r : original . r ,
g : original . g ,
b : original . b
} ;
}
return false ;
} ,
write : function write ( color ) {
return {
r : color . r ,
g : color . g ,
b : color . b
} ;
}
} ,
HSVA _OBJ : {
read : function read ( original ) {
if ( _utilsCommon2 [ 'default' ] . isNumber ( original . h ) && _utilsCommon2 [ 'default' ] . isNumber ( original . s ) && _utilsCommon2 [ 'default' ] . isNumber ( original . v ) && _utilsCommon2 [ 'default' ] . isNumber ( original . a ) ) {
return {
space : 'HSV' ,
h : original . h ,
s : original . s ,
v : original . v ,
a : original . a
} ;
}
return false ;
} ,
write : function write ( color ) {
return {
h : color . h ,
s : color . s ,
v : color . v ,
a : color . a
} ;
}
} ,
HSV _OBJ : {
read : function read ( original ) {
if ( _utilsCommon2 [ 'default' ] . isNumber ( original . h ) && _utilsCommon2 [ 'default' ] . isNumber ( original . s ) && _utilsCommon2 [ 'default' ] . isNumber ( original . v ) ) {
return {
space : 'HSV' ,
h : original . h ,
s : original . s ,
v : original . v
} ;
}
return false ;
} ,
write : function write ( color ) {
return {
h : color . h ,
s : color . s ,
v : color . v
} ;
}
}
}
} ] ;
2015-08-14 20:29:30 +00:00
var result = undefined ;
var toReturn = undefined ;
var interpret = function interpret ( ) {
toReturn = false ;
var original = arguments . length > 1 ? _utilsCommon2 [ 'default' ] . toArray ( arguments ) : arguments [ 0 ] ;
_utilsCommon2 [ 'default' ] . each ( INTERPRETATIONS , function ( family ) {
if ( family . litmus ( original ) ) {
_utilsCommon2 [ 'default' ] . each ( family . conversions , function ( conversion , conversionName ) {
result = conversion . read ( original ) ;
if ( toReturn === false && result !== false ) {
toReturn = result ;
result . conversionName = conversionName ;
result . conversion = conversion ;
return _utilsCommon2 [ 'default' ] . BREAK ;
}
} ) ;
return _utilsCommon2 [ 'default' ] . BREAK ;
}
} ) ;
return toReturn ;
} ;
2015-08-14 16:30:03 +00:00
exports [ 'default' ] = interpret ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 4 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
2015-08-14 20:29:30 +00:00
exports [ 'default' ] = function ( color ) {
if ( color . a === 1 || _utilsCommon2 [ 'default' ] . isUndefined ( color . a ) ) {
2015-08-14 16:30:03 +00:00
var s = color . hex . toString ( 16 ) ;
while ( s . length < 6 ) {
s = '0' + s ;
}
return '#' + s ;
}
2015-08-14 20:29:30 +00:00
return 'rgba(' + Math . round ( color . r ) + ',' + Math . round ( color . g ) + ',' + Math . round ( color . b ) + ',' + color . a + ')' ;
2015-08-14 16:30:03 +00:00
} ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 5 */
/***/ function ( module , exports ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
var ARR _EACH = Array . prototype . forEach ;
var ARR _SLICE = Array . prototype . slice ;
/ * *
* Band - aid methods for things that should be a lot easier in JavaScript .
* Implementation and structure inspired by underscore . js
* http : //documentcloud.github.com/underscore/
* /
var Common = {
BREAK : { } ,
extend : function extend ( target ) {
this . each ( ARR _SLICE . call ( arguments , 1 ) , function ( obj ) {
2015-08-14 20:29:30 +00:00
for ( var key in obj ) {
if ( ! this . isUndefined ( obj [ key ] ) ) {
target [ key ] = obj [ key ] ;
}
}
2015-08-14 16:30:03 +00:00
} , this ) ;
return target ;
} ,
defaults : function defaults ( target ) {
this . each ( ARR _SLICE . call ( arguments , 1 ) , function ( obj ) {
2015-08-14 20:29:30 +00:00
for ( var key in obj ) {
if ( this . isUndefined ( target [ key ] ) ) {
target [ key ] = obj [ key ] ;
}
}
2015-08-14 16:30:03 +00:00
} , this ) ;
return target ;
} ,
compose : function compose ( ) {
var toCall = ARR _SLICE . call ( arguments ) ;
return function ( ) {
var args = ARR _SLICE . call ( arguments ) ;
for ( var i = toCall . length - 1 ; i >= 0 ; i -- ) {
args = [ toCall [ i ] . apply ( this , args ) ] ;
}
return args [ 0 ] ;
} ;
} ,
each : function each ( obj , itr , scope ) {
2015-08-14 20:29:30 +00:00
if ( ! obj ) {
return ;
}
2015-08-14 16:30:03 +00:00
if ( ARR _EACH && obj . forEach && obj . forEach === ARR _EACH ) {
obj . forEach ( itr , scope ) ;
} else if ( obj . length === obj . length + 0 ) {
// Is number but not NaN
2015-08-14 20:29:30 +00:00
var key = undefined ;
var l = undefined ;
for ( key = 0 , l = obj . length ; key < l ; key ++ ) {
if ( key in obj && itr . call ( scope , obj [ key ] , key ) === this . BREAK ) {
return ;
}
}
2015-08-14 16:30:03 +00:00
} else {
2015-08-14 20:29:30 +00:00
for ( var key in obj ) {
if ( itr . call ( scope , obj [ key ] , key ) === this . BREAK ) {
return ;
}
}
2015-08-14 16:30:03 +00:00
}
} ,
defer : function defer ( fnc ) {
setTimeout ( fnc , 0 ) ;
} ,
toArray : function toArray ( obj ) {
if ( obj . toArray ) return obj . toArray ( ) ;
return ARR _SLICE . call ( obj ) ;
} ,
isUndefined : function isUndefined ( obj ) {
return obj === undefined ;
} ,
isNull : function isNull ( obj ) {
return obj === null ;
} ,
2015-08-14 20:29:30 +00:00
isNaN : ( function ( _isNaN ) {
function isNaN ( _x ) {
return _isNaN . apply ( this , arguments ) ;
}
isNaN . toString = function ( ) {
return _isNaN . toString ( ) ;
} ;
return isNaN ;
} ) ( function ( obj ) {
return isNaN ( obj ) ;
} ) ,
2015-08-14 16:30:03 +00:00
isArray : Array . isArray || function ( obj ) {
return obj . constructor === Array ;
} ,
isObject : function isObject ( obj ) {
return obj === Object ( obj ) ;
} ,
isNumber : function isNumber ( obj ) {
return obj === obj + 0 ;
} ,
isString : function isString ( obj ) {
return obj === obj + '' ;
} ,
isBoolean : function isBoolean ( obj ) {
return obj === false || obj === true ;
} ,
isFunction : function isFunction ( obj ) {
return Object . prototype . toString . call ( obj ) === '[object Function]' ;
}
} ;
2015-08-14 20:29:30 +00:00
exports [ 'default' ] = Common ;
module . exports = exports [ 'default' ] ;
2015-08-14 16:30:03 +00:00
/***/ } ,
/* 6 */
/***/ function ( module , exports ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
"use strict" ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 22:16:18 +00:00
var tmpComponent = undefined ;
2015-08-14 16:30:03 +00:00
var ColorMath = {
hsv _to _rgb : function hsv _to _rgb ( h , s , v ) {
var hi = Math . floor ( h / 60 ) % 6 ;
var f = h / 60 - Math . floor ( h / 60 ) ;
var p = v * ( 1.0 - s ) ;
var q = v * ( 1.0 - f * s ) ;
var t = v * ( 1.0 - ( 1.0 - f ) * s ) ;
2015-08-14 22:16:18 +00:00
2015-08-14 16:30:03 +00:00
var c = [ [ v , t , p ] , [ q , v , p ] , [ p , v , t ] , [ p , q , v ] , [ t , p , v ] , [ v , p , q ] ] [ hi ] ;
return {
r : c [ 0 ] * 255 ,
g : c [ 1 ] * 255 ,
b : c [ 2 ] * 255
} ;
} ,
rgb _to _hsv : function rgb _to _hsv ( r , g , b ) {
2015-08-14 22:16:18 +00:00
var min = Math . min ( r , g , b ) ;
var max = Math . max ( r , g , b ) ;
var delta = max - min ;
var h = undefined ;
var s = undefined ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
if ( max !== 0 ) {
2015-08-14 16:30:03 +00:00
s = delta / max ;
} else {
return {
h : NaN ,
s : 0 ,
v : 0
} ;
}
2015-08-14 22:16:18 +00:00
if ( r === max ) {
2015-08-14 16:30:03 +00:00
h = ( g - b ) / delta ;
2015-08-14 22:16:18 +00:00
} else if ( g === max ) {
2015-08-14 16:30:03 +00:00
h = 2 + ( b - r ) / delta ;
} else {
h = 4 + ( r - g ) / delta ;
}
h /= 6 ;
if ( h < 0 ) {
h += 1 ;
}
return {
h : h * 360 ,
s : s ,
v : max / 255
} ;
} ,
rgb _to _hex : function rgb _to _hex ( r , g , b ) {
var hex = this . hex _with _component ( 0 , 2 , r ) ;
hex = this . hex _with _component ( hex , 1 , g ) ;
hex = this . hex _with _component ( hex , 0 , b ) ;
return hex ;
} ,
component _from _hex : function component _from _hex ( hex , componentIndex ) {
return hex >> componentIndex * 8 & 0xFF ;
} ,
hex _with _component : function hex _with _component ( hex , componentIndex , value ) {
return value << ( tmpComponent = componentIndex * 8 ) | hex & ~ ( 0xFF << tmpComponent ) ;
}
} ;
exports [ "default" ] = ColorMath ;
module . exports = exports [ "default" ] ;
/***/ } ,
/* 7 */
2015-08-14 22:16:18 +00:00
/***/ function ( module , exports ) {
2015-08-14 16:30:03 +00:00
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
/ * *
* @ class An "abstract" class that represents a given property of an object .
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
*
* @ member dat . controllers
* /
2015-08-14 22:16:18 +00:00
'use strict' ;
exports . _ _esModule = true ;
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
2015-08-14 16:30:03 +00:00
var Controller = ( function ( ) {
function Controller ( object , property ) {
_classCallCheck ( this , Controller ) ;
this . initialValue = object [ property ] ;
/ * *
* Those who extend this class will put their DOM elements in here .
* @ type { DOMElement }
* /
this . domElement = document . createElement ( 'div' ) ;
/ * *
* The object to manipulate
* @ type { Object }
* /
this . object = object ;
/ * *
* The name of the property to manipulate
* @ type { String }
* /
this . property = property ;
/ * *
* The function to be called on change .
* @ type { Function }
* @ ignore
* /
this . _ _onChange = undefined ;
/ * *
* The function to be called on finishing change .
* @ type { Function }
* @ ignore
* /
this . _ _onFinishChange = undefined ;
}
/ * *
* Specify that a function fire every time someone changes the value with
* this Controller .
*
* @ param { Function } fnc This function will be called whenever the value
* is modified via this Controller .
2015-08-14 20:29:30 +00:00
* @ returns { Controller } this
2015-08-14 16:30:03 +00:00
* /
2015-08-14 20:29:30 +00:00
Controller . prototype . onChange = function onChange ( fnc ) {
this . _ _onChange = fnc ;
return this ;
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
/ * *
* Specify that a function fire every time someone "finishes" changing
* the value wih this Controller . Useful for values that change
* incrementally like numbers or strings .
*
* @ param { Function } fnc This function will be called whenever
* someone "finishes" changing the value via this Controller .
* @ returns { Controller } this
* /
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
Controller . prototype . onFinishChange = function onFinishChange ( fnc ) {
this . _ _onFinishChange = fnc ;
return this ;
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
/ * *
* Change the value of < code > object [ property ] < / c o d e >
*
* @ param { Object } newValue The new value of < code > object [ property ] < / c o d e >
* /
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
Controller . prototype . setValue = function setValue ( newValue ) {
this . object [ this . property ] = newValue ;
if ( this . _ _onChange ) {
this . _ _onChange . call ( this , newValue ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
this . updateDisplay ( ) ;
return this ;
} ;
/ * *
* Gets the value of < code > object [ property ] < / c o d e >
*
* @ returns { Object } The current value of < code > object [ property ] < / c o d e >
* /
Controller . prototype . getValue = function getValue ( ) {
return this . object [ this . property ] ;
} ;
/ * *
* Refreshes the visual display of a Controller in order to keep sync
* with the object ' s current value .
* @ returns { Controller } this
* /
Controller . prototype . updateDisplay = function updateDisplay ( ) {
return this ;
} ;
/ * *
* @ returns { Boolean } true if the value has deviated from initialValue
* /
Controller . prototype . isModified = function isModified ( ) {
return this . initialValue !== this . getValue ( ) ;
} ;
2015-08-14 16:30:03 +00:00
return Controller ;
} ) ( ) ;
exports [ 'default' ] = Controller ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 8 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _Controller2 = _ _webpack _require _ _ ( 7 ) ;
var _Controller3 = _interopRequireDefault ( _Controller2 ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
/ * *
* @ class Provides a checkbox input to alter the boolean property of an object .
* @ extends dat . controllers . Controller
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
*
* @ member dat . controllers
* /
var BooleanController = ( function ( _Controller ) {
_inherits ( BooleanController , _Controller ) ;
function BooleanController ( object , property ) {
_classCallCheck ( this , BooleanController ) ;
2015-08-14 20:29:30 +00:00
_Controller . call ( this , object , property ) ;
2015-08-14 16:30:03 +00:00
var _this = this ;
this . _ _prev = this . getValue ( ) ;
this . _ _checkbox = document . createElement ( 'input' ) ;
this . _ _checkbox . setAttribute ( 'type' , 'checkbox' ) ;
function onChange ( ) {
_this . setValue ( ! _this . _ _prev ) ;
}
_domDom2 [ 'default' ] . bind ( this . _ _checkbox , 'change' , onChange , false ) ;
this . domElement . appendChild ( this . _ _checkbox ) ;
// Match original value
this . updateDisplay ( ) ;
}
2015-08-14 20:29:30 +00:00
BooleanController . prototype . setValue = function setValue ( v ) {
var toReturn = _Controller . prototype . setValue . call ( this , v ) ;
if ( this . _ _onFinishChange ) {
this . _ _onFinishChange . call ( this , this . getValue ( ) ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
this . _ _prev = this . getValue ( ) ;
return toReturn ;
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
BooleanController . prototype . updateDisplay = function updateDisplay ( ) {
if ( this . getValue ( ) === true ) {
this . _ _checkbox . setAttribute ( 'checked' , 'checked' ) ;
this . _ _checkbox . checked = true ;
} else {
this . _ _checkbox . checked = false ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
return _Controller . prototype . updateDisplay . call ( this ) ;
} ;
2015-08-14 16:30:03 +00:00
return BooleanController ;
} ) ( _Controller3 [ 'default' ] ) ;
exports [ 'default' ] = BooleanController ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 9 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var EVENT _MAP = {
'HTMLEvents' : [ 'change' ] ,
'MouseEvents' : [ 'click' , 'mousemove' , 'mousedown' , 'mouseup' , 'mouseover' ] ,
'KeyboardEvents' : [ 'keydown' ]
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var EVENT _MAP _INV = { } ;
_utilsCommon2 [ 'default' ] . each ( EVENT _MAP , function ( v , k ) {
_utilsCommon2 [ 'default' ] . each ( v , function ( e ) {
EVENT _MAP _INV [ e ] = k ;
} ) ;
} ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var CSS _VALUE _PIXELS = /(\d+(\.\d+)?)px/ ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
function cssValueToPixels ( val ) {
2015-08-14 22:16:18 +00:00
if ( val === '0' || _utilsCommon2 [ 'default' ] . isUndefined ( val ) ) {
return 0 ;
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var match = val . match ( CSS _VALUE _PIXELS ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
if ( ! _utilsCommon2 [ 'default' ] . isNull ( match ) ) {
return parseFloat ( match [ 1 ] ) ;
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
// TODO ...ems? %?
return 0 ;
}
2015-08-14 16:30:03 +00:00
/ * *
2015-08-14 20:29:30 +00:00
* @ namespace
* @ member dat . dom
2015-08-14 16:30:03 +00:00
* /
2015-08-14 20:29:30 +00:00
var dom = {
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
/ * *
*
* @ param elem
* @ param selectable
* /
makeSelectable : function makeSelectable ( elem , selectable ) {
if ( elem === undefined || elem . style === undefined ) return ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
elem . onselectstart = selectable ? function ( ) {
return false ;
} : function ( ) { } ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
elem . style . MozUserSelect = selectable ? 'auto' : 'none' ;
elem . style . KhtmlUserSelect = selectable ? 'auto' : 'none' ;
elem . unselectable = selectable ? 'on' : 'off' ;
} ,
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
/ * *
*
* @ param elem
* @ param horizontal
2015-08-14 22:16:18 +00:00
* @ param vert
2015-08-14 20:29:30 +00:00
* /
2015-08-14 22:16:18 +00:00
makeFullscreen : function makeFullscreen ( elem , hor , vert ) {
var vertical = vert ;
var horizontal = hor ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
if ( _utilsCommon2 [ 'default' ] . isUndefined ( horizontal ) ) {
horizontal = true ;
}
if ( _utilsCommon2 [ 'default' ] . isUndefined ( vertical ) ) {
vertical = true ;
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
elem . style . position = 'absolute' ;
2015-08-14 16:30:03 +00:00
if ( horizontal ) {
elem . style . left = 0 ;
elem . style . right = 0 ;
}
if ( vertical ) {
elem . style . top = 0 ;
elem . style . bottom = 0 ;
}
} ,
/ * *
*
* @ param elem
* @ param eventType
* @ param params
* /
2015-08-14 22:16:18 +00:00
fakeEvent : function fakeEvent ( elem , eventType , pars , aux ) {
var params = pars || { } ;
2015-08-14 16:30:03 +00:00
var className = EVENT _MAP _INV [ eventType ] ;
if ( ! className ) {
throw new Error ( 'Event type ' + eventType + ' not supported.' ) ;
}
var evt = document . createEvent ( className ) ;
switch ( className ) {
case 'MouseEvents' :
2015-08-14 22:16:18 +00:00
{
var clientX = params . x || params . clientX || 0 ;
var clientY = params . y || params . clientY || 0 ;
evt . initMouseEvent ( eventType , params . bubbles || false , params . cancelable || true , window , params . clickCount || 1 , 0 , // screen X
0 , // screen Y
clientX , // client X
clientY , // client Y
false , false , false , false , 0 , null ) ;
break ;
}
2015-08-14 16:30:03 +00:00
case 'KeyboardEvents' :
2015-08-14 22:16:18 +00:00
{
var init = evt . initKeyboardEvent || evt . initKeyEvent ; // webkit || moz
_utilsCommon2 [ 'default' ] . defaults ( params , {
cancelable : true ,
ctrlKey : false ,
altKey : false ,
shiftKey : false ,
metaKey : false ,
keyCode : undefined ,
charCode : undefined
} ) ;
init ( eventType , params . bubbles || false , params . cancelable , window , params . ctrlKey , params . altKey , params . shiftKey , params . metaKey , params . keyCode , params . charCode ) ;
break ;
}
2015-08-14 16:30:03 +00:00
default :
2015-08-14 22:16:18 +00:00
{
evt . initEvent ( eventType , params . bubbles || false , params . cancelable || true ) ;
break ;
}
2015-08-14 16:30:03 +00:00
}
_utilsCommon2 [ 'default' ] . defaults ( evt , aux ) ;
elem . dispatchEvent ( evt ) ;
} ,
/ * *
*
* @ param elem
* @ param event
* @ param func
* @ param bool
* /
2015-08-14 22:16:18 +00:00
bind : function bind ( elem , event , func , newBool ) {
var bool = newBool || false ;
if ( elem . addEventListener ) {
elem . addEventListener ( event , func , bool ) ;
} else if ( elem . attachEvent ) {
elem . attachEvent ( 'on' + event , func ) ;
}
2015-08-14 16:30:03 +00:00
return dom ;
} ,
/ * *
*
* @ param elem
* @ param event
* @ param func
* @ param bool
* /
2015-08-14 22:16:18 +00:00
unbind : function unbind ( elem , event , func , newBool ) {
var bool = newBool || false ;
if ( elem . removeEventListener ) {
elem . removeEventListener ( event , func , bool ) ;
} else if ( elem . detachEvent ) {
elem . detachEvent ( 'on' + event , func ) ;
}
2015-08-14 16:30:03 +00:00
return dom ;
} ,
/ * *
*
* @ param elem
* @ param className
* /
addClass : function addClass ( elem , className ) {
if ( elem . className === undefined ) {
elem . className = className ;
} else if ( elem . className !== className ) {
var classes = elem . className . split ( / +/ ) ;
2015-08-14 22:16:18 +00:00
if ( classes . indexOf ( className ) === - 1 ) {
2015-08-14 16:30:03 +00:00
classes . push ( className ) ;
elem . className = classes . join ( ' ' ) . replace ( /^\s+/ , '' ) . replace ( /\s+$/ , '' ) ;
}
}
return dom ;
} ,
/ * *
*
* @ param elem
* @ param className
* /
removeClass : function removeClass ( elem , className ) {
if ( className ) {
2015-08-14 22:16:18 +00:00
if ( elem . className === className ) {
elem . removeAttribute ( 'class' ) ;
} else {
var classes = elem . className . split ( / +/ ) ;
var index = classes . indexOf ( className ) ;
if ( index !== - 1 ) {
classes . splice ( index , 1 ) ;
elem . className = classes . join ( ' ' ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
}
2015-08-14 16:30:03 +00:00
} else {
elem . className = undefined ;
}
return dom ;
} ,
hasClass : function hasClass ( elem , className ) {
return new RegExp ( '(?:^|\\s+)' + className + '(?:\\s+|$)' ) . test ( elem . className ) || false ;
} ,
/ * *
*
* @ param elem
* /
getWidth : function getWidth ( elem ) {
var style = getComputedStyle ( elem ) ;
2015-08-14 22:16:18 +00:00
return cssValueToPixels ( style [ 'border-left-width' ] ) + cssValueToPixels ( style [ 'border-right-width' ] ) + cssValueToPixels ( style [ 'padding-left' ] ) + cssValueToPixels ( style [ 'padding-right' ] ) + cssValueToPixels ( style . width ) ;
2015-08-14 16:30:03 +00:00
} ,
/ * *
*
* @ param elem
* /
getHeight : function getHeight ( elem ) {
var style = getComputedStyle ( elem ) ;
2015-08-14 22:16:18 +00:00
return cssValueToPixels ( style [ 'border-top-width' ] ) + cssValueToPixels ( style [ 'border-bottom-width' ] ) + cssValueToPixels ( style [ 'padding-top' ] ) + cssValueToPixels ( style [ 'padding-bottom' ] ) + cssValueToPixels ( style . height ) ;
2015-08-14 16:30:03 +00:00
} ,
/ * *
*
2015-08-14 22:16:18 +00:00
* @ param el
2015-08-14 16:30:03 +00:00
* /
2015-08-14 22:16:18 +00:00
getOffset : function getOffset ( el ) {
var elem = el ;
2015-08-14 16:30:03 +00:00
var offset = { left : 0 , top : 0 } ;
if ( elem . offsetParent ) {
do {
offset . left += elem . offsetLeft ;
offset . top += elem . offsetTop ;
2015-08-14 22:16:18 +00:00
elem = elem . offsetParent ;
} while ( elem ) ;
2015-08-14 16:30:03 +00:00
}
return offset ;
} ,
// http://stackoverflow.com/posts/2684561/revisions
/ * *
*
* @ param elem
* /
isActive : function isActive ( elem ) {
return elem === document . activeElement && ( elem . type || elem . href ) ;
}
} ;
exports [ 'default' ] = dom ;
module . exports = exports [ 'default' ] ;
/***/ } ,
2015-08-14 20:29:30 +00:00
/* 10 */
2015-08-14 16:30:03 +00:00
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _Controller2 = _ _webpack _require _ _ ( 7 ) ;
var _Controller3 = _interopRequireDefault ( _Controller2 ) ;
var _domDom = _ _webpack _require _ _ ( 9 ) ;
var _domDom2 = _interopRequireDefault ( _domDom ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
/ * *
* @ class Provides a select input to alter the property of an object , using a
* list of accepted values .
*
* @ extends dat . controllers . Controller
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
* @ param { Object | string [ ] } options A map of labels to acceptable values , or
* a list of acceptable string values .
*
* @ member dat . controllers
* /
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var OptionController = ( function ( _Controller ) {
_inherits ( OptionController , _Controller ) ;
2015-08-14 22:16:18 +00:00
function OptionController ( object , property , opts ) {
2015-08-14 20:29:30 +00:00
_classCallCheck ( this , OptionController ) ;
_Controller . call ( this , object , property ) ;
2015-08-14 22:16:18 +00:00
var options = opts ;
2015-08-14 20:29:30 +00:00
var _this = this ;
/ * *
* The drop down menu
* @ ignore
* /
this . _ _select = document . createElement ( 'select' ) ;
if ( _utilsCommon2 [ 'default' ] . isArray ( options ) ) {
2015-08-14 22:16:18 +00:00
( function ( ) {
var map = { } ;
_utilsCommon2 [ 'default' ] . each ( options , function ( element ) {
map [ element ] = element ;
} ) ;
options = map ;
} ) ( ) ;
2015-08-14 20:29:30 +00:00
}
_utilsCommon2 [ 'default' ] . each ( options , function ( value , key ) {
var opt = document . createElement ( 'option' ) ;
opt . innerHTML = key ;
opt . setAttribute ( 'value' , value ) ;
_this . _ _select . appendChild ( opt ) ;
} ) ;
// Acknowledge original value
this . updateDisplay ( ) ;
_domDom2 [ 'default' ] . bind ( this . _ _select , 'change' , function ( ) {
var desiredValue = this . options [ this . selectedIndex ] . value ;
_this . setValue ( desiredValue ) ;
} ) ;
this . domElement . appendChild ( this . _ _select ) ;
}
OptionController . prototype . setValue = function setValue ( v ) {
var toReturn = _Controller . prototype . setValue . call ( this , v ) ;
if ( this . _ _onFinishChange ) {
this . _ _onFinishChange . call ( this , this . getValue ( ) ) ;
}
return toReturn ;
} ;
OptionController . prototype . updateDisplay = function updateDisplay ( ) {
this . _ _select . value = this . getValue ( ) ;
return _Controller . prototype . updateDisplay . call ( this ) ;
} ;
return OptionController ;
} ) ( _Controller3 [ 'default' ] ) ;
exports [ 'default' ] = OptionController ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 11 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _Controller2 = _ _webpack _require _ _ ( 7 ) ;
var _Controller3 = _interopRequireDefault ( _Controller2 ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
/ * *
* @ class Provides a text input to alter the string property of an object .
*
* @ extends dat . controllers . Controller
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
*
* @ member dat . controllers
* /
var StringController = ( function ( _Controller ) {
_inherits ( StringController , _Controller ) ;
function StringController ( object , property ) {
_classCallCheck ( this , StringController ) ;
2015-08-14 20:29:30 +00:00
_Controller . call ( this , object , property ) ;
2015-08-14 16:30:03 +00:00
var _this = this ;
this . _ _input = document . createElement ( 'input' ) ;
this . _ _input . setAttribute ( 'type' , 'text' ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'keyup' , onChange ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'change' , onChange ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'blur' , onBlur ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'keydown' , function ( e ) {
if ( e . keyCode === 13 ) {
this . blur ( ) ;
}
} ) ;
function onChange ( ) {
_this . setValue ( _this . _ _input . value ) ;
}
function onBlur ( ) {
if ( _this . _ _onFinishChange ) {
_this . _ _onFinishChange . call ( _this , _this . getValue ( ) ) ;
}
}
this . updateDisplay ( ) ;
this . domElement . appendChild ( this . _ _input ) ;
}
2015-08-14 20:29:30 +00:00
StringController . prototype . updateDisplay = function updateDisplay ( ) {
// Stops the caret from moving on account of:
// keyup -> setValue -> updateDisplay
if ( ! _domDom2 [ 'default' ] . isActive ( this . _ _input ) ) {
this . _ _input . value = this . getValue ( ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
return _Controller . prototype . updateDisplay . call ( this ) ;
} ;
2015-08-14 16:30:03 +00:00
return StringController ;
} ) ( _Controller3 [ 'default' ] ) ;
exports [ 'default' ] = StringController ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 12 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _Controller2 = _ _webpack _require _ _ ( 7 ) ;
var _Controller3 = _interopRequireDefault ( _Controller2 ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
function numDecimals ( x ) {
2015-08-14 22:16:18 +00:00
var _x = x . toString ( ) ;
if ( _x . indexOf ( '.' ) > - 1 ) {
return _x . length - _x . indexOf ( '.' ) - 1 ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
return 0 ;
2015-08-14 16:30:03 +00:00
}
/ * *
* @ class Represents a given property of an object that is a number .
*
* @ extends dat . controllers . Controller
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
* @ param { Object } [ params ] Optional parameters
* @ param { Number } [ params . min ] Minimum allowed value
* @ param { Number } [ params . max ] Maximum allowed value
* @ param { Number } [ params . step ] Increment by which to change value
*
* @ member dat . controllers
* /
var NumberController = ( function ( _Controller ) {
_inherits ( NumberController , _Controller ) ;
function NumberController ( object , property , params ) {
_classCallCheck ( this , NumberController ) ;
2015-08-14 20:29:30 +00:00
_Controller . call ( this , object , property ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
var _params = params || { } ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
this . _ _min = _params . min ;
this . _ _max = _params . max ;
this . _ _step = _params . step ;
2015-08-14 16:30:03 +00:00
if ( _utilsCommon2 [ 'default' ] . isUndefined ( this . _ _step ) ) {
2015-08-14 22:16:18 +00:00
if ( this . initialValue === 0 ) {
2015-08-14 16:30:03 +00:00
this . _ _impliedStep = 1 ; // What are we, psychics?
} else {
// Hey Doug, check this out.
this . _ _impliedStep = Math . pow ( 10 , Math . floor ( Math . log ( Math . abs ( this . initialValue ) ) / Math . LN10 ) ) / 10 ;
}
} else {
this . _ _impliedStep = this . _ _step ;
}
this . _ _precision = numDecimals ( this . _ _impliedStep ) ;
}
2015-08-14 20:29:30 +00:00
NumberController . prototype . setValue = function setValue ( v ) {
2015-08-14 22:16:18 +00:00
var _v = v ;
if ( this . _ _min !== undefined && _v < this . _ _min ) {
_v = this . _ _min ;
} else if ( this . _ _max !== undefined && _v > this . _ _max ) {
_v = this . _ _max ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
if ( this . _ _step !== undefined && _v % this . _ _step !== 0 ) {
_v = Math . round ( _v / this . _ _step ) * this . _ _step ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
return _Controller . prototype . setValue . call ( this , _v ) ;
2015-08-14 20:29:30 +00:00
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
/ * *
* Specify a minimum value for < code > object [ property ] < / c o d e > .
*
* @ param { Number } minValue The minimum value for
* < code > object [ property ] < / c o d e >
* @ returns { dat . controllers . NumberController } this
* /
NumberController . prototype . min = function min ( v ) {
this . _ _min = v ;
return this ;
} ;
/ * *
* Specify a maximum value for < code > object [ property ] < / c o d e > .
*
* @ param { Number } maxValue The maximum value for
* < code > object [ property ] < / c o d e >
* @ returns { dat . controllers . NumberController } this
* /
NumberController . prototype . max = function max ( v ) {
this . _ _max = v ;
return this ;
} ;
/ * *
* Specify a step value that dat . controllers . NumberController
* increments by .
*
* @ param { Number } stepValue The step value for
* dat . controllers . NumberController
* @ default if minimum and maximum specified increment is 1 % of the
* difference otherwise stepValue is 1
* @ returns { dat . controllers . NumberController } this
* /
NumberController . prototype . step = function step ( v ) {
this . _ _step = v ;
this . _ _impliedStep = v ;
this . _ _precision = numDecimals ( v ) ;
return this ;
} ;
2015-08-14 16:30:03 +00:00
return NumberController ;
} ) ( _Controller3 [ 'default' ] ) ;
exports [ 'default' ] = NumberController ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 13 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _NumberController2 = _ _webpack _require _ _ ( 12 ) ;
var _NumberController3 = _interopRequireDefault ( _NumberController2 ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
function roundToDecimal ( value , decimals ) {
var tenTo = Math . pow ( 10 , decimals ) ;
return Math . round ( value * tenTo ) / tenTo ;
}
/ * *
* @ class Represents a given property of an object that is a number and
* provides an input element with which to manipulate it .
*
* @ extends dat . controllers . Controller
* @ extends dat . controllers . NumberController
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
* @ param { Object } [ params ] Optional parameters
* @ param { Number } [ params . min ] Minimum allowed value
* @ param { Number } [ params . max ] Maximum allowed value
* @ param { Number } [ params . step ] Increment by which to change value
*
* @ member dat . controllers
* /
var NumberControllerBox = ( function ( _NumberController ) {
_inherits ( NumberControllerBox , _NumberController ) ;
function NumberControllerBox ( object , property , params ) {
_classCallCheck ( this , NumberControllerBox ) ;
2015-08-14 20:29:30 +00:00
_NumberController . call ( this , object , property , params ) ;
2015-08-14 16:30:03 +00:00
this . _ _truncationSuspended = false ;
var _this = this ;
/ * *
* { Number } Previous mouse y position
* @ ignore
* /
2015-08-14 22:16:18 +00:00
var prevY = undefined ;
2015-08-14 16:30:03 +00:00
this . _ _input = document . createElement ( 'input' ) ;
this . _ _input . setAttribute ( 'type' , 'text' ) ;
// Makes it so manually specified values are not truncated.
_domDom2 [ 'default' ] . bind ( this . _ _input , 'change' , onChange ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'blur' , onBlur ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'mousedown' , onMouseDown ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'keydown' , function ( e ) {
// When pressing entire, you can be as precise as you want.
if ( e . keyCode === 13 ) {
_this . _ _truncationSuspended = true ;
this . blur ( ) ;
_this . _ _truncationSuspended = false ;
}
} ) ;
function onChange ( ) {
var attempted = parseFloat ( _this . _ _input . value ) ;
2015-08-14 22:16:18 +00:00
if ( ! _utilsCommon2 [ 'default' ] . isNaN ( attempted ) ) {
_this . setValue ( attempted ) ;
}
2015-08-14 16:30:03 +00:00
}
function onBlur ( ) {
onChange ( ) ;
if ( _this . _ _onFinishChange ) {
_this . _ _onFinishChange . call ( _this , _this . getValue ( ) ) ;
}
}
function onMouseDown ( e ) {
_domDom2 [ 'default' ] . bind ( window , 'mousemove' , onMouseDrag ) ;
_domDom2 [ 'default' ] . bind ( window , 'mouseup' , onMouseUp ) ;
2015-08-14 22:16:18 +00:00
prevY = e . clientY ;
2015-08-14 16:30:03 +00:00
}
function onMouseDrag ( e ) {
2015-08-14 22:16:18 +00:00
var diff = prevY - e . clientY ;
2015-08-14 16:30:03 +00:00
_this . setValue ( _this . getValue ( ) + diff * _this . _ _impliedStep ) ;
2015-08-14 22:16:18 +00:00
prevY = e . clientY ;
2015-08-14 16:30:03 +00:00
}
function onMouseUp ( ) {
_domDom2 [ 'default' ] . unbind ( window , 'mousemove' , onMouseDrag ) ;
_domDom2 [ 'default' ] . unbind ( window , 'mouseup' , onMouseUp ) ;
}
this . updateDisplay ( ) ;
this . domElement . appendChild ( this . _ _input ) ;
}
2015-08-14 20:29:30 +00:00
NumberControllerBox . prototype . updateDisplay = function updateDisplay ( ) {
this . _ _input . value = this . _ _truncationSuspended ? this . getValue ( ) : roundToDecimal ( this . getValue ( ) , this . _ _precision ) ;
return _NumberController . prototype . updateDisplay . call ( this ) ;
} ;
2015-08-14 16:30:03 +00:00
return NumberControllerBox ;
} ) ( _NumberController3 [ 'default' ] ) ;
exports [ 'default' ] = NumberControllerBox ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 14 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _NumberController2 = _ _webpack _require _ _ ( 12 ) ;
var _NumberController3 = _interopRequireDefault ( _NumberController2 ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
var _utilsCss = _ _webpack _require _ _ ( 15 ) ;
var _utilsCss2 = _interopRequireDefault ( _utilsCss ) ;
var _styleCssSassNumberControllerSliderScss = _ _webpack _require _ _ ( 16 ) ;
var _styleCssSassNumberControllerSliderScss2 = _interopRequireDefault ( _styleCssSassNumberControllerSliderScss ) ;
function map ( v , i1 , i2 , o1 , o2 ) {
return o1 + ( o2 - o1 ) * ( ( v - i1 ) / ( i2 - i1 ) ) ;
}
/ * *
* @ class Represents a given property of an object that is a number , contains
* a minimum and maximum , and provides a slider element with which to
* manipulate it . It should be noted that the slider element is made up of
* < code > & lt ; div & gt ; < / c o d e > t a g s , < s t r o n g > n o t < / s t r o n g > t h e h t m l 5
* < code > & lt ; slider & gt ; < / c o d e > e l e m e n t .
*
* @ extends dat . controllers . Controller
* @ extends dat . controllers . NumberController
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
* @ param { Number } minValue Minimum allowed value
* @ param { Number } maxValue Maximum allowed value
* @ param { Number } stepValue Increment by which to change value
*
* @ member dat . controllers
* /
var NumberControllerSlider = ( function ( _NumberController ) {
_inherits ( NumberControllerSlider , _NumberController ) ;
function NumberControllerSlider ( object , property , min , max , step ) {
_classCallCheck ( this , NumberControllerSlider ) ;
2015-08-14 20:29:30 +00:00
_NumberController . call ( this , object , property , { min : min , max : max , step : step } ) ;
2015-08-14 16:30:03 +00:00
var _this = this ;
this . _ _background = document . createElement ( 'div' ) ;
this . _ _foreground = document . createElement ( 'div' ) ;
_domDom2 [ 'default' ] . bind ( this . _ _background , 'mousedown' , onMouseDown ) ;
_domDom2 [ 'default' ] . addClass ( this . _ _background , 'slider' ) ;
_domDom2 [ 'default' ] . addClass ( this . _ _foreground , 'slider-fg' ) ;
function onMouseDown ( e ) {
_domDom2 [ 'default' ] . bind ( window , 'mousemove' , onMouseDrag ) ;
_domDom2 [ 'default' ] . bind ( window , 'mouseup' , onMouseUp ) ;
onMouseDrag ( e ) ;
}
function onMouseDrag ( e ) {
e . preventDefault ( ) ;
var offset = _domDom2 [ 'default' ] . getOffset ( _this . _ _background ) ;
var width = _domDom2 [ 'default' ] . getWidth ( _this . _ _background ) ;
_this . setValue ( map ( e . clientX , offset . left , offset . left + width , _this . _ _min , _this . _ _max ) ) ;
return false ;
}
function onMouseUp ( ) {
_domDom2 [ 'default' ] . unbind ( window , 'mousemove' , onMouseDrag ) ;
_domDom2 [ 'default' ] . unbind ( window , 'mouseup' , onMouseUp ) ;
if ( _this . _ _onFinishChange ) {
_this . _ _onFinishChange . call ( _this , _this . getValue ( ) ) ;
}
}
this . updateDisplay ( ) ;
this . _ _background . appendChild ( this . _ _foreground ) ;
this . domElement . appendChild ( this . _ _background ) ;
}
/ * *
* Injects default stylesheet for slider elements .
* /
2015-08-14 20:29:30 +00:00
NumberControllerSlider . prototype . updateDisplay = function updateDisplay ( ) {
var pct = ( this . getValue ( ) - this . _ _min ) / ( this . _ _max - this . _ _min ) ;
this . _ _foreground . style . width = pct * 100 + '%' ;
return _NumberController . prototype . updateDisplay . call ( this ) ;
} ;
2015-08-14 16:30:03 +00:00
return NumberControllerSlider ;
} ) ( _NumberController3 [ 'default' ] ) ;
NumberControllerSlider . useDefaultStyles = function ( ) {
_utilsCss2 [ 'default' ] . inject ( _styleCssSassNumberControllerSliderScss2 [ 'default' ] ) ;
} ;
exports [ 'default' ] = NumberControllerSlider ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 15 */
/***/ function ( module , exports ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
module . exports = {
2015-08-14 20:29:30 +00:00
load : function load ( url , indoc ) {
var doc = indoc || document ;
2015-08-14 16:30:03 +00:00
var link = doc . createElement ( 'link' ) ;
link . type = 'text/css' ;
link . rel = 'stylesheet' ;
link . href = url ;
doc . getElementsByTagName ( 'head' ) [ 0 ] . appendChild ( link ) ;
} ,
2015-08-14 20:29:30 +00:00
inject : function inject ( css , indoc ) {
var doc = indoc || document ;
2015-08-14 16:30:03 +00:00
var injected = document . createElement ( 'style' ) ;
injected . type = 'text/css' ;
injected . innerHTML = css ;
doc . getElementsByTagName ( 'head' ) [ 0 ] . appendChild ( injected ) ;
}
} ;
/***/ } ,
/* 16 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = _ _webpack _require _ _ ( 17 ) ;
if ( typeof content === 'string' ) content = [ [ module . id , content , '' ] ] ;
// add the styles to the DOM
var update = _ _webpack _require _ _ ( 19 ) ( content , { } ) ;
if ( content . locals ) module . exports = content . locals ;
// Hot Module Replacement
if ( false ) {
// When the styles change, update the <style> tags
if ( ! content . locals ) {
module . hot . accept ( "!!./../../../node_modules/css-loader/index.js!./../../../node_modules/sass-loader/index.js!./NumberControllerSlider.scss" , function ( ) {
var newContent = require ( "!!./../../../node_modules/css-loader/index.js!./../../../node_modules/sass-loader/index.js!./NumberControllerSlider.scss" ) ;
if ( typeof newContent === 'string' ) newContent = [ [ module . id , newContent , '' ] ] ;
update ( newContent ) ;
} ) ;
}
// When the module is disposed, remove the <style> tags
module . hot . dispose ( function ( ) { update ( ) ; } ) ;
}
/***/ } ,
/* 17 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
exports = module . exports = _ _webpack _require _ _ ( 18 ) ( ) ;
// imports
// module
exports . push ( [ module . id , "/**\n * dat-gui JavaScript Controller Library\n * http://code.google.com/p/dat-gui\n *\n * Copyright 2011 Data Arts Team, Google Creative Lab\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n */\n.slider {\n box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);\n height: 1em;\n border-radius: 1em;\n background-color: #eee;\n padding: 0 0.5em;\n overflow: hidden; }\n\n.slider-fg {\n padding: 1px 0 2px 0;\n background-color: #aaa;\n height: 1em;\n margin-left: -0.5em;\n padding-right: 0.5em;\n border-radius: 1em 0 0 1em; }\n\n.slider-fg:after {\n display: inline-block;\n border-radius: 1em;\n background-color: #fff;\n border: 1px solid #aaa;\n content: '';\n float: right;\n margin-right: -1em;\n margin-top: -1px;\n height: 0.9em;\n width: 0.9em; }\n" , "" ] ) ;
// exports
/***/ } ,
/* 18 */
/***/ function ( module , exports ) {
/ *
MIT License http : //www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @ sokra
* /
// css base code, injected by the css-loader
module . exports = function ( ) {
var list = [ ] ;
// return the list of modules as css string
list . toString = function toString ( ) {
var result = [ ] ;
for ( var i = 0 ; i < this . length ; i ++ ) {
var item = this [ i ] ;
if ( item [ 2 ] ) {
result . push ( "@media " + item [ 2 ] + "{" + item [ 1 ] + "}" ) ;
} else {
result . push ( item [ 1 ] ) ;
}
}
return result . join ( "" ) ;
} ;
// import a list of modules into the list
list . i = function ( modules , mediaQuery ) {
if ( typeof modules === "string" )
modules = [ [ null , modules , "" ] ] ;
var alreadyImportedModules = { } ;
for ( var i = 0 ; i < this . length ; i ++ ) {
var id = this [ i ] [ 0 ] ;
if ( typeof id === "number" )
alreadyImportedModules [ id ] = true ;
}
for ( i = 0 ; i < modules . length ; i ++ ) {
var item = modules [ i ] ;
// skip already imported module
// this implementation is not 100% perfect for weird media query combinations
// when a module is imported multiple times with different media queries.
// I hope this will never occur (Hey this way we have smaller bundles)
if ( typeof item [ 0 ] !== "number" || ! alreadyImportedModules [ item [ 0 ] ] ) {
if ( mediaQuery && ! item [ 2 ] ) {
item [ 2 ] = mediaQuery ;
} else if ( mediaQuery ) {
item [ 2 ] = "(" + item [ 2 ] + ") and (" + mediaQuery + ")" ;
}
list . push ( item ) ;
}
}
} ;
return list ;
} ;
/***/ } ,
/* 19 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ *
MIT License http : //www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @ sokra
* /
var stylesInDom = { } ,
memoize = function ( fn ) {
var memo ;
return function ( ) {
if ( typeof memo === "undefined" ) memo = fn . apply ( this , arguments ) ;
return memo ;
} ;
} ,
isOldIE = memoize ( function ( ) {
return /msie [6-9]\b/ . test ( window . navigator . userAgent . toLowerCase ( ) ) ;
} ) ,
getHeadElement = memoize ( function ( ) {
return document . head || document . getElementsByTagName ( "head" ) [ 0 ] ;
} ) ,
singletonElement = null ,
singletonCounter = 0 ;
module . exports = function ( list , options ) {
if ( false ) {
if ( typeof document !== "object" ) throw new Error ( "The style-loader cannot be used in a non-browser environment" ) ;
}
options = options || { } ;
// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
// tags it will allow on a page
if ( typeof options . singleton === "undefined" ) options . singleton = isOldIE ( ) ;
var styles = listToStyles ( list ) ;
addStylesToDom ( styles , options ) ;
return function update ( newList ) {
var mayRemove = [ ] ;
for ( var i = 0 ; i < styles . length ; i ++ ) {
var item = styles [ i ] ;
var domStyle = stylesInDom [ item . id ] ;
domStyle . refs -- ;
mayRemove . push ( domStyle ) ;
}
if ( newList ) {
var newStyles = listToStyles ( newList ) ;
addStylesToDom ( newStyles , options ) ;
}
for ( var i = 0 ; i < mayRemove . length ; i ++ ) {
var domStyle = mayRemove [ i ] ;
if ( domStyle . refs === 0 ) {
for ( var j = 0 ; j < domStyle . parts . length ; j ++ )
domStyle . parts [ j ] ( ) ;
delete stylesInDom [ domStyle . id ] ;
}
}
} ;
}
function addStylesToDom ( styles , options ) {
for ( var i = 0 ; i < styles . length ; i ++ ) {
var item = styles [ i ] ;
var domStyle = stylesInDom [ item . id ] ;
if ( domStyle ) {
domStyle . refs ++ ;
for ( var j = 0 ; j < domStyle . parts . length ; j ++ ) {
domStyle . parts [ j ] ( item . parts [ j ] ) ;
}
for ( ; j < item . parts . length ; j ++ ) {
domStyle . parts . push ( addStyle ( item . parts [ j ] , options ) ) ;
}
} else {
var parts = [ ] ;
for ( var j = 0 ; j < item . parts . length ; j ++ ) {
parts . push ( addStyle ( item . parts [ j ] , options ) ) ;
}
stylesInDom [ item . id ] = { id : item . id , refs : 1 , parts : parts } ;
}
}
}
function listToStyles ( list ) {
var styles = [ ] ;
var newStyles = { } ;
for ( var i = 0 ; i < list . length ; i ++ ) {
var item = list [ i ] ;
var id = item [ 0 ] ;
var css = item [ 1 ] ;
var media = item [ 2 ] ;
var sourceMap = item [ 3 ] ;
var part = { css : css , media : media , sourceMap : sourceMap } ;
if ( ! newStyles [ id ] )
styles . push ( newStyles [ id ] = { id : id , parts : [ part ] } ) ;
else
newStyles [ id ] . parts . push ( part ) ;
}
return styles ;
}
function createStyleElement ( ) {
var styleElement = document . createElement ( "style" ) ;
var head = getHeadElement ( ) ;
styleElement . type = "text/css" ;
head . appendChild ( styleElement ) ;
return styleElement ;
}
function createLinkElement ( ) {
var linkElement = document . createElement ( "link" ) ;
var head = getHeadElement ( ) ;
linkElement . rel = "stylesheet" ;
head . appendChild ( linkElement ) ;
return linkElement ;
}
function addStyle ( obj , options ) {
var styleElement , update , remove ;
if ( options . singleton ) {
var styleIndex = singletonCounter ++ ;
styleElement = singletonElement || ( singletonElement = createStyleElement ( ) ) ;
update = applyToSingletonTag . bind ( null , styleElement , styleIndex , false ) ;
remove = applyToSingletonTag . bind ( null , styleElement , styleIndex , true ) ;
} else if ( obj . sourceMap &&
typeof URL === "function" &&
typeof URL . createObjectURL === "function" &&
typeof URL . revokeObjectURL === "function" &&
typeof Blob === "function" &&
typeof btoa === "function" ) {
styleElement = createLinkElement ( ) ;
update = updateLink . bind ( null , styleElement ) ;
remove = function ( ) {
styleElement . parentNode . removeChild ( styleElement ) ;
if ( styleElement . href )
URL . revokeObjectURL ( styleElement . href ) ;
} ;
} else {
styleElement = createStyleElement ( ) ;
update = applyToTag . bind ( null , styleElement ) ;
remove = function ( ) {
styleElement . parentNode . removeChild ( styleElement ) ;
} ;
}
update ( obj ) ;
return function updateStyle ( newObj ) {
if ( newObj ) {
if ( newObj . css === obj . css && newObj . media === obj . media && newObj . sourceMap === obj . sourceMap )
return ;
update ( obj = newObj ) ;
} else {
remove ( ) ;
}
} ;
}
var replaceText = ( function ( ) {
var textStore = [ ] ;
return function ( index , replacement ) {
textStore [ index ] = replacement ;
return textStore . filter ( Boolean ) . join ( '\n' ) ;
} ;
} ) ( ) ;
function applyToSingletonTag ( styleElement , index , remove , obj ) {
var css = remove ? "" : obj . css ;
if ( styleElement . styleSheet ) {
styleElement . styleSheet . cssText = replaceText ( index , css ) ;
} else {
var cssNode = document . createTextNode ( css ) ;
var childNodes = styleElement . childNodes ;
if ( childNodes [ index ] ) styleElement . removeChild ( childNodes [ index ] ) ;
if ( childNodes . length ) {
styleElement . insertBefore ( cssNode , childNodes [ index ] ) ;
} else {
styleElement . appendChild ( cssNode ) ;
}
}
}
function applyToTag ( styleElement , obj ) {
var css = obj . css ;
var media = obj . media ;
var sourceMap = obj . sourceMap ;
if ( media ) {
styleElement . setAttribute ( "media" , media )
}
if ( styleElement . styleSheet ) {
styleElement . styleSheet . cssText = css ;
} else {
while ( styleElement . firstChild ) {
styleElement . removeChild ( styleElement . firstChild ) ;
}
styleElement . appendChild ( document . createTextNode ( css ) ) ;
}
}
function updateLink ( linkElement , obj ) {
var css = obj . css ;
var media = obj . media ;
var sourceMap = obj . sourceMap ;
if ( sourceMap ) {
// http://stackoverflow.com/a/26603875
css += "\n/*# sourceMappingURL=data:application/json;base64," + btoa ( unescape ( encodeURIComponent ( JSON . stringify ( sourceMap ) ) ) ) + " */" ;
}
var blob = new Blob ( [ css ] , { type : "text/css" } ) ;
var oldSrc = linkElement . href ;
linkElement . href = URL . createObjectURL ( blob ) ;
if ( oldSrc )
URL . revokeObjectURL ( oldSrc ) ;
}
/***/ } ,
/* 20 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _Controller2 = _ _webpack _require _ _ ( 7 ) ;
var _Controller3 = _interopRequireDefault ( _Controller2 ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
/ * *
* @ class Provides a GUI interface to fire a specified method , a property of an object .
*
* @ extends dat . controllers . Controller
*
* @ param { Object } object The object to be manipulated
* @ param { string } property The name of the property to be manipulated
*
* @ member dat . controllers
* /
var FunctionController = ( function ( _Controller ) {
_inherits ( FunctionController , _Controller ) ;
function FunctionController ( object , property , text ) {
_classCallCheck ( this , FunctionController ) ;
2015-08-14 20:29:30 +00:00
_Controller . call ( this , object , property ) ;
2015-08-14 16:30:03 +00:00
var _this = this ;
this . _ _button = document . createElement ( 'div' ) ;
this . _ _button . innerHTML = text === undefined ? 'Fire' : text ;
2015-08-14 20:29:30 +00:00
2015-08-14 16:30:03 +00:00
_domDom2 [ 'default' ] . bind ( this . _ _button , 'click' , function ( e ) {
e . preventDefault ( ) ;
_this . fire ( ) ;
return false ;
} ) ;
_domDom2 [ 'default' ] . addClass ( this . _ _button , 'button' ) ;
this . domElement . appendChild ( this . _ _button ) ;
}
2015-08-14 20:29:30 +00:00
FunctionController . prototype . fire = function fire ( ) {
if ( this . _ _onChange ) {
this . _ _onChange . call ( this ) ;
}
this . getValue ( ) . call ( this . object ) ;
if ( this . _ _onFinishChange ) {
this . _ _onFinishChange . call ( this , this . getValue ( ) ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
} ;
2015-08-14 16:30:03 +00:00
return FunctionController ;
} ) ( _Controller3 [ 'default' ] ) ;
exports [ 'default' ] = FunctionController ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 21 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) Object . setPrototypeOf ? Object . setPrototypeOf ( subClass , superClass ) : subClass . _ _proto _ _ = superClass ; }
var _Controller2 = _ _webpack _require _ _ ( 7 ) ;
var _Controller3 = _interopRequireDefault ( _Controller2 ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
var _colorColor = _ _webpack _require _ _ ( 2 ) ;
var _colorColor2 = _interopRequireDefault ( _colorColor ) ;
var _colorInterpret = _ _webpack _require _ _ ( 3 ) ;
var _colorInterpret2 = _interopRequireDefault ( _colorInterpret ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
var ColorController = ( function ( _Controller ) {
_inherits ( ColorController , _Controller ) ;
function ColorController ( object , property ) {
_classCallCheck ( this , ColorController ) ;
2015-08-14 20:29:30 +00:00
_Controller . call ( this , object , property ) ;
2015-08-14 16:30:03 +00:00
this . _ _color = new _colorColor2 [ 'default' ] ( this . getValue ( ) ) ;
this . _ _temp = new _colorColor2 [ 'default' ] ( 0 ) ;
var _this = this ;
this . domElement = document . createElement ( 'div' ) ;
_domDom2 [ 'default' ] . makeSelectable ( this . domElement , false ) ;
this . _ _selector = document . createElement ( 'div' ) ;
this . _ _selector . className = 'selector' ;
this . _ _saturation _field = document . createElement ( 'div' ) ;
this . _ _saturation _field . className = 'saturation-field' ;
this . _ _field _knob = document . createElement ( 'div' ) ;
this . _ _field _knob . className = 'field-knob' ;
this . _ _field _knob _border = '2px solid ' ;
this . _ _hue _knob = document . createElement ( 'div' ) ;
this . _ _hue _knob . className = 'hue-knob' ;
this . _ _hue _field = document . createElement ( 'div' ) ;
this . _ _hue _field . className = 'hue-field' ;
this . _ _input = document . createElement ( 'input' ) ;
this . _ _input . type = 'text' ;
this . _ _input _textShadow = '0 1px 1px ' ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'keydown' , function ( e ) {
if ( e . keyCode === 13 ) {
// on enter
onBlur . call ( this ) ;
}
} ) ;
_domDom2 [ 'default' ] . bind ( this . _ _input , 'blur' , onBlur ) ;
2015-08-14 22:16:18 +00:00
_domDom2 [ 'default' ] . bind ( this . _ _selector , 'mousedown' , function ( ) /* e */ {
_domDom2 [ 'default' ] . addClass ( this , 'drag' ) . bind ( window , 'mouseup' , function ( ) /* e */ {
2015-08-14 16:30:03 +00:00
_domDom2 [ 'default' ] . removeClass ( _this . _ _selector , 'drag' ) ;
} ) ;
} ) ;
2015-08-14 22:16:18 +00:00
var valueField = document . createElement ( 'div' ) ;
2015-08-14 16:30:03 +00:00
_utilsCommon2 [ 'default' ] . extend ( this . _ _selector . style , {
width : '122px' ,
height : '102px' ,
padding : '3px' ,
backgroundColor : '#222' ,
boxShadow : '0px 1px 3px rgba(0,0,0,0.3)'
} ) ;
_utilsCommon2 [ 'default' ] . extend ( this . _ _field _knob . style , {
position : 'absolute' ,
width : '12px' ,
height : '12px' ,
2015-08-14 22:16:18 +00:00
border : this . _ _field _knob _border + ( this . _ _color . v < 0.5 ? '#fff' : '#000' ) ,
2015-08-14 16:30:03 +00:00
boxShadow : '0px 1px 3px rgba(0,0,0,0.5)' ,
borderRadius : '12px' ,
zIndex : 1
} ) ;
_utilsCommon2 [ 'default' ] . extend ( this . _ _hue _knob . style , {
position : 'absolute' ,
width : '15px' ,
height : '2px' ,
borderRight : '4px solid #fff' ,
zIndex : 1
} ) ;
_utilsCommon2 [ 'default' ] . extend ( this . _ _saturation _field . style , {
width : '100px' ,
height : '100px' ,
border : '1px solid #555' ,
marginRight : '3px' ,
display : 'inline-block' ,
cursor : 'pointer'
} ) ;
2015-08-14 22:16:18 +00:00
_utilsCommon2 [ 'default' ] . extend ( valueField . style , {
2015-08-14 16:30:03 +00:00
width : '100%' ,
height : '100%' ,
background : 'none'
} ) ;
2015-08-14 22:16:18 +00:00
linearGradient ( valueField , 'top' , 'rgba(0,0,0,0)' , '#000' ) ;
2015-08-14 16:30:03 +00:00
_utilsCommon2 [ 'default' ] . extend ( this . _ _hue _field . style , {
width : '15px' ,
height : '100px' ,
display : 'inline-block' ,
border : '1px solid #555' ,
cursor : 'ns-resize'
} ) ;
hueGradient ( this . _ _hue _field ) ;
_utilsCommon2 [ 'default' ] . extend ( this . _ _input . style , {
outline : 'none' ,
// width: '120px',
textAlign : 'center' ,
// padding: '4px',
// marginBottom: '6px',
color : '#fff' ,
border : 0 ,
fontWeight : 'bold' ,
textShadow : this . _ _input _textShadow + 'rgba(0,0,0,0.7)'
} ) ;
_domDom2 [ 'default' ] . bind ( this . _ _saturation _field , 'mousedown' , fieldDown ) ;
_domDom2 [ 'default' ] . bind ( this . _ _field _knob , 'mousedown' , fieldDown ) ;
_domDom2 [ 'default' ] . bind ( this . _ _hue _field , 'mousedown' , function ( e ) {
setH ( e ) ;
_domDom2 [ 'default' ] . bind ( window , 'mousemove' , setH ) ;
_domDom2 [ 'default' ] . bind ( window , 'mouseup' , unbindH ) ;
} ) ;
function fieldDown ( e ) {
setSV ( e ) ;
// document.body.style.cursor = 'none';
_domDom2 [ 'default' ] . bind ( window , 'mousemove' , setSV ) ;
_domDom2 [ 'default' ] . bind ( window , 'mouseup' , unbindSV ) ;
}
function unbindSV ( ) {
_domDom2 [ 'default' ] . unbind ( window , 'mousemove' , setSV ) ;
_domDom2 [ 'default' ] . unbind ( window , 'mouseup' , unbindSV ) ;
// document.body.style.cursor = 'default';
}
function onBlur ( ) {
2015-08-14 20:29:30 +00:00
var i = _colorInterpret2 [ 'default' ] ( this . value ) ;
2015-08-14 16:30:03 +00:00
if ( i !== false ) {
_this . _ _color . _ _state = i ;
_this . setValue ( _this . _ _color . toOriginal ( ) ) ;
} else {
this . value = _this . _ _color . toString ( ) ;
}
}
function unbindH ( ) {
_domDom2 [ 'default' ] . unbind ( window , 'mousemove' , setH ) ;
_domDom2 [ 'default' ] . unbind ( window , 'mouseup' , unbindH ) ;
}
2015-08-14 22:16:18 +00:00
this . _ _saturation _field . appendChild ( valueField ) ;
2015-08-14 16:30:03 +00:00
this . _ _selector . appendChild ( this . _ _field _knob ) ;
this . _ _selector . appendChild ( this . _ _saturation _field ) ;
this . _ _selector . appendChild ( this . _ _hue _field ) ;
this . _ _hue _field . appendChild ( this . _ _hue _knob ) ;
this . domElement . appendChild ( this . _ _input ) ;
this . domElement . appendChild ( this . _ _selector ) ;
this . updateDisplay ( ) ;
function setSV ( e ) {
e . preventDefault ( ) ;
var w = _domDom2 [ 'default' ] . getWidth ( _this . _ _saturation _field ) ;
var o = _domDom2 [ 'default' ] . getOffset ( _this . _ _saturation _field ) ;
var s = ( e . clientX - o . left + document . body . scrollLeft ) / w ;
var v = 1 - ( e . clientY - o . top + document . body . scrollTop ) / w ;
2015-08-14 22:16:18 +00:00
if ( v > 1 ) {
v = 1 ;
} else if ( v < 0 ) {
v = 0 ;
}
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
if ( s > 1 ) {
s = 1 ;
} else if ( s < 0 ) {
s = 0 ;
}
2015-08-14 16:30:03 +00:00
_this . _ _color . v = v ;
_this . _ _color . s = s ;
_this . setValue ( _this . _ _color . toOriginal ( ) ) ;
return false ;
}
function setH ( e ) {
e . preventDefault ( ) ;
var s = _domDom2 [ 'default' ] . getHeight ( _this . _ _hue _field ) ;
var o = _domDom2 [ 'default' ] . getOffset ( _this . _ _hue _field ) ;
var h = 1 - ( e . clientY - o . top + document . body . scrollTop ) / s ;
2015-08-14 22:16:18 +00:00
if ( h > 1 ) {
h = 1 ;
} else if ( h < 0 ) {
h = 0 ;
}
2015-08-14 16:30:03 +00:00
_this . _ _color . h = h * 360 ;
_this . setValue ( _this . _ _color . toOriginal ( ) ) ;
return false ;
}
}
2015-08-14 20:29:30 +00:00
ColorController . prototype . updateDisplay = function updateDisplay ( ) {
var i = _colorInterpret2 [ 'default' ] ( this . getValue ( ) ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
if ( i !== false ) {
var mismatch = false ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
// Check for mismatch on the interpreted value.
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_utilsCommon2 [ 'default' ] . each ( _colorColor2 [ 'default' ] . COMPONENTS , function ( component ) {
if ( ! _utilsCommon2 [ 'default' ] . isUndefined ( i [ component ] ) && ! _utilsCommon2 [ 'default' ] . isUndefined ( this . _ _color . _ _state [ component ] ) && i [ component ] !== this . _ _color . _ _state [ component ] ) {
mismatch = true ;
return { } ; // break
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
} , this ) ;
// If nothing diverges, we keep our previous values
// for statefulness, otherwise we recalculate fresh
if ( mismatch ) {
_utilsCommon2 [ 'default' ] . extend ( this . _ _color . _ _state , i ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 20:29:30 +00:00
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_utilsCommon2 [ 'default' ] . extend ( this . _ _temp . _ _state , this . _ _color . _ _state ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . _ _temp . a = 1 ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
var flip = this . _ _color . v < 0.5 || this . _ _color . s > 0.5 ? 255 : 0 ;
2015-08-14 20:29:30 +00:00
var _flip = 255 - flip ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_utilsCommon2 [ 'default' ] . extend ( this . _ _field _knob . style , {
marginLeft : 100 * this . _ _color . s - 7 + 'px' ,
marginTop : 100 * ( 1 - this . _ _color . v ) - 7 + 'px' ,
backgroundColor : this . _ _temp . toString ( ) ,
border : this . _ _field _knob _border + 'rgb(' + flip + ',' + flip + ',' + flip + ')'
} ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . _ _hue _knob . style . marginTop = ( 1 - this . _ _color . h / 360 ) * 100 + 'px' ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . _ _temp . s = 1 ;
this . _ _temp . v = 1 ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
linearGradient ( this . _ _saturation _field , 'left' , '#fff' , this . _ _temp . toString ( ) ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_utilsCommon2 [ 'default' ] . extend ( this . _ _input . style , {
backgroundColor : this . _ _input . value = this . _ _color . toString ( ) ,
color : 'rgb(' + flip + ',' + flip + ',' + flip + ')' ,
textShadow : this . _ _input _textShadow + 'rgba(' + _flip + ',' + _flip + ',' + _flip + ',.7)'
} ) ;
} ;
2015-08-14 16:30:03 +00:00
return ColorController ;
} ) ( _Controller3 [ 'default' ] ) ;
var vendors = [ '-moz-' , '-o-' , '-webkit-' , '-ms-' , '' ] ;
function linearGradient ( elem , x , a , b ) {
elem . style . background = '' ;
_utilsCommon2 [ 'default' ] . each ( vendors , function ( vendor ) {
elem . style . cssText += 'background: ' + vendor + 'linear-gradient(' + x + ', ' + a + ' 0%, ' + b + ' 100%); ' ;
} ) ;
}
function hueGradient ( elem ) {
elem . style . background = '' ;
elem . style . cssText += 'background: -moz-linear-gradient(top, #ff0000 0%, #ff00ff 17%, #0000ff 34%, #00ffff 50%, #00ff00 67%, #ffff00 84%, #ff0000 100%);' ;
elem . style . cssText += 'background: -webkit-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' ;
elem . style . cssText += 'background: -o-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' ;
elem . style . cssText += 'background: -ms-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' ;
elem . style . cssText += 'background: linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);' ;
}
exports [ 'default' ] = ColorController ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 22 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
var _utilsCss = _ _webpack _require _ _ ( 15 ) ;
var _utilsCss2 = _interopRequireDefault ( _utilsCss ) ;
var _htmlSaveDialogueHtml = _ _webpack _require _ _ ( 23 ) ;
var _htmlSaveDialogueHtml2 = _interopRequireDefault ( _htmlSaveDialogueHtml ) ;
var _styleCssSassStyleScss = _ _webpack _require _ _ ( 24 ) ;
var _styleCssSassStyleScss2 = _interopRequireDefault ( _styleCssSassStyleScss ) ;
var _controllersControllerFactory = _ _webpack _require _ _ ( 26 ) ;
var _controllersControllerFactory2 = _interopRequireDefault ( _controllersControllerFactory ) ;
var _controllersController = _ _webpack _require _ _ ( 7 ) ;
var _controllersController2 = _interopRequireDefault ( _controllersController ) ;
var _controllersBooleanController = _ _webpack _require _ _ ( 8 ) ;
var _controllersBooleanController2 = _interopRequireDefault ( _controllersBooleanController ) ;
var _controllersFunctionController = _ _webpack _require _ _ ( 20 ) ;
var _controllersFunctionController2 = _interopRequireDefault ( _controllersFunctionController ) ;
var _controllersNumberControllerBox = _ _webpack _require _ _ ( 13 ) ;
var _controllersNumberControllerBox2 = _interopRequireDefault ( _controllersNumberControllerBox ) ;
var _controllersNumberControllerSlider = _ _webpack _require _ _ ( 14 ) ;
var _controllersNumberControllerSlider2 = _interopRequireDefault ( _controllersNumberControllerSlider ) ;
var _controllersColorController = _ _webpack _require _ _ ( 21 ) ;
var _controllersColorController2 = _interopRequireDefault ( _controllersColorController ) ;
var _utilsRequestAnimationFrame = _ _webpack _require _ _ ( 27 ) ;
var _utilsRequestAnimationFrame2 = _interopRequireDefault ( _utilsRequestAnimationFrame ) ;
var _domCenteredDiv = _ _webpack _require _ _ ( 28 ) ;
var _domCenteredDiv2 = _interopRequireDefault ( _domCenteredDiv ) ;
2015-08-14 20:29:30 +00:00
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
_utilsCss2 [ 'default' ] . inject ( _styleCssSassStyleScss2 [ 'default' ] ) ;
/** Outer-most className for GUI's */
var CSS _NAMESPACE = 'dg' ;
var HIDE _KEY _CODE = 72 ;
/** The only value shared between the JS and SCSS. Use caution. */
var CLOSE _BUTTON _HEIGHT = 20 ;
var DEFAULT _DEFAULT _PRESET _NAME = 'Default' ;
var SUPPORTS _LOCAL _STORAGE = ( function ( ) {
try {
2015-08-14 22:16:18 +00:00
return 'localStorage' in window && window . localStorage !== null ;
2015-08-14 16:30:03 +00:00
} catch ( e ) {
return false ;
}
} ) ( ) ;
2015-08-14 22:16:18 +00:00
var SAVE _DIALOGUE = undefined ;
2015-08-14 16:30:03 +00:00
/** Have we yet to create an autoPlace GUI? */
2015-08-14 22:16:18 +00:00
var autoPlaceVirgin = true ;
2015-08-14 16:30:03 +00:00
/** Fixed position div that auto place GUI's go inside */
2015-08-14 22:16:18 +00:00
var autoPlaceContainer = undefined ;
2015-08-14 16:30:03 +00:00
/** Are we hiding the GUI's ? */
var hide = false ;
/** GUI's which should be hidden */
2015-08-14 22:16:18 +00:00
var hideableGuis = [ ] ;
2015-08-14 16:30:03 +00:00
/ * *
* A lightweight controller library for JavaScript . It allows you to easily
* manipulate variables and fire functions on the fly .
* @ class
*
* @ member dat . gui
*
* @ param { Object } [ params ]
* @ param { String } [ params . name ] The name of this GUI .
* @ param { Object } [ params . load ] JSON object representing the saved state of
* this GUI .
* @ param { Boolean } [ params . auto = true ]
* @ param { dat . gui . GUI } [ params . parent ] The GUI I ' m nested in .
* @ param { Boolean } [ params . closed ] If true , starts closed
* /
2015-08-14 22:16:18 +00:00
var GUI = function GUI ( pars ) {
2015-08-14 16:30:03 +00:00
var _this = this ;
2015-08-14 22:16:18 +00:00
var params = pars || { } ;
2015-08-14 16:30:03 +00:00
/ * *
* Outermost DOM Element
* @ type DOMElement
* /
this . domElement = document . createElement ( 'div' ) ;
this . _ _ul = document . createElement ( 'ul' ) ;
this . domElement . appendChild ( this . _ _ul ) ;
_domDom2 [ 'default' ] . addClass ( this . domElement , CSS _NAMESPACE ) ;
/ * *
* Nested GUI ' s by name
* @ ignore
* /
this . _ _folders = { } ;
this . _ _controllers = [ ] ;
/ * *
* List of objects I ' m remembering for save , only used in top level GUI
* @ ignore
* /
this . _ _rememberedObjects = [ ] ;
/ * *
* Maps the index of remembered objects to a map of controllers , only used
* in top level GUI .
*
* @ private
* @ ignore
*
* @ example
* [
* {
* propertyName : Controller ,
* anotherPropertyName : Controller
* } ,
* {
* propertyName : Controller
* }
* ]
* /
this . _ _rememberedObjectIndecesToControllers = [ ] ;
this . _ _listening = [ ] ;
// Default parameters
params = _utilsCommon2 [ 'default' ] . defaults ( params , {
autoPlace : true ,
width : GUI . DEFAULT _WIDTH
} ) ;
params = _utilsCommon2 [ 'default' ] . defaults ( params , {
resizable : params . autoPlace ,
hideable : params . autoPlace
} ) ;
if ( ! _utilsCommon2 [ 'default' ] . isUndefined ( params . load ) ) {
// Explicit preset
2015-08-14 20:29:30 +00:00
if ( params . preset ) {
params . load . preset = params . preset ;
}
2015-08-14 16:30:03 +00:00
} else {
params . load = { preset : DEFAULT _DEFAULT _PRESET _NAME } ;
}
if ( _utilsCommon2 [ 'default' ] . isUndefined ( params . parent ) && params . hideable ) {
2015-08-14 22:16:18 +00:00
hideableGuis . push ( this ) ;
2015-08-14 16:30:03 +00:00
}
// Only root level GUI's are resizable.
params . resizable = _utilsCommon2 [ 'default' ] . isUndefined ( params . parent ) && params . resizable ;
if ( params . autoPlace && _utilsCommon2 [ 'default' ] . isUndefined ( params . scrollable ) ) {
params . scrollable = true ;
}
// params.scrollable = common.isUndefined(params.parent) && params.scrollable === true;
// Not part of params because I don't want people passing this in via
// constructor. Should be a 'remembered' value.
2015-08-14 22:16:18 +00:00
var useLocalStorage = SUPPORTS _LOCAL _STORAGE && localStorage . getItem ( getLocalStorageHash ( this , 'isLocal' ) ) === 'true' ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
var saveToLocalStorage = undefined ;
2015-08-14 16:30:03 +00:00
Object . defineProperties ( this ,
/** @lends dat.gui.GUI.prototype */
{
/ * *
* The parent < code > GUI < / c o d e >
* @ type dat . gui . GUI
* /
parent : {
get : function get ( ) {
return params . parent ;
}
} ,
scrollable : {
get : function get ( ) {
return params . scrollable ;
}
} ,
/ * *
* Handles < code > GUI < / c o d e > ' s e l e m e n t p l a c e m e n t f o r y o u
* @ type Boolean
* /
autoPlace : {
get : function get ( ) {
return params . autoPlace ;
}
} ,
/ * *
* The identifier for a set of saved values
* @ type String
* /
preset : {
get : function get ( ) {
if ( _this . parent ) {
return _this . getRoot ( ) . preset ;
}
2015-08-14 22:16:18 +00:00
return params . load . preset ;
2015-08-14 16:30:03 +00:00
} ,
set : function set ( v ) {
if ( _this . parent ) {
_this . getRoot ( ) . preset = v ;
} else {
params . load . preset = v ;
}
setPresetSelectIndex ( this ) ;
_this . revert ( ) ;
}
} ,
/ * *
* The width of < code > GUI < / c o d e > e l e m e n t
* @ type Number
* /
width : {
get : function get ( ) {
return params . width ;
} ,
set : function set ( v ) {
params . width = v ;
setWidth ( _this , v ) ;
}
} ,
/ * *
* The name of < code > GUI < / c o d e > . U s e d f o r f o l d e r s . i . e
* a folder ' s name
* @ type String
* /
name : {
get : function get ( ) {
return params . name ;
} ,
set : function set ( v ) {
// TODO Check for collisions among sibling folders
params . name = v ;
2015-08-14 22:16:18 +00:00
if ( titleRowName ) {
titleRowName . innerHTML = params . name ;
2015-08-14 16:30:03 +00:00
}
}
} ,
/ * *
* Whether the < code > GUI < / c o d e > i s c o l l a p s e d o r n o t
* @ type Boolean
* /
closed : {
get : function get ( ) {
return params . closed ;
} ,
set : function set ( v ) {
params . closed = v ;
if ( params . closed ) {
_domDom2 [ 'default' ] . addClass ( _this . _ _ul , GUI . CLASS _CLOSED ) ;
} else {
_domDom2 [ 'default' ] . removeClass ( _this . _ _ul , GUI . CLASS _CLOSED ) ;
}
// For browsers that aren't going to respect the CSS transition,
// Lets just check our height against the window height right off
// the bat.
this . onResize ( ) ;
if ( _this . _ _closeButton ) {
_this . _ _closeButton . innerHTML = v ? GUI . TEXT _OPEN : GUI . TEXT _CLOSED ;
}
}
} ,
/ * *
* Contains all presets
* @ type Object
* /
load : {
get : function get ( ) {
return params . load ;
}
} ,
/ * *
* Determines whether or not to use < a href = "https://developer.mozilla.org/en/DOM/Storage#localStorage" > localStorage < / a > a s t h e m e a n s f o r
* < code > remember < / c o d e > i n g
* @ type Boolean
* /
useLocalStorage : {
get : function get ( ) {
2015-08-14 22:16:18 +00:00
return useLocalStorage ;
2015-08-14 16:30:03 +00:00
} ,
set : function set ( bool ) {
if ( SUPPORTS _LOCAL _STORAGE ) {
2015-08-14 22:16:18 +00:00
useLocalStorage = bool ;
2015-08-14 16:30:03 +00:00
if ( bool ) {
_domDom2 [ 'default' ] . bind ( window , 'unload' , saveToLocalStorage ) ;
} else {
_domDom2 [ 'default' ] . unbind ( window , 'unload' , saveToLocalStorage ) ;
}
localStorage . setItem ( getLocalStorageHash ( _this , 'isLocal' ) , bool ) ;
}
}
}
} ) ;
// Are we a root level GUI?
if ( _utilsCommon2 [ 'default' ] . isUndefined ( params . parent ) ) {
params . closed = false ;
_domDom2 [ 'default' ] . addClass ( this . domElement , GUI . CLASS _MAIN ) ;
_domDom2 [ 'default' ] . makeSelectable ( this . domElement , false ) ;
// Are we supposed to be loading locally?
if ( SUPPORTS _LOCAL _STORAGE ) {
2015-08-14 22:16:18 +00:00
if ( useLocalStorage ) {
2015-08-14 16:30:03 +00:00
_this . useLocalStorage = true ;
2015-08-14 22:16:18 +00:00
var savedGui = localStorage . getItem ( getLocalStorageHash ( this , 'gui' ) ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
if ( savedGui ) {
params . load = JSON . parse ( savedGui ) ;
2015-08-14 16:30:03 +00:00
}
}
}
this . _ _closeButton = document . createElement ( 'div' ) ;
this . _ _closeButton . innerHTML = GUI . TEXT _CLOSED ;
_domDom2 [ 'default' ] . addClass ( this . _ _closeButton , GUI . CLASS _CLOSE _BUTTON ) ;
this . domElement . appendChild ( this . _ _closeButton ) ;
_domDom2 [ 'default' ] . bind ( this . _ _closeButton , 'click' , function ( ) {
_this . closed = ! _this . closed ;
} ) ;
// Oh, you're a nested GUI!
} else {
if ( params . closed === undefined ) {
params . closed = true ;
}
2015-08-14 22:16:18 +00:00
var _titleRowName = document . createTextNode ( params . name ) ;
_domDom2 [ 'default' ] . addClass ( _titleRowName , 'controller-name' ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
var titleRow = addRow ( _this , _titleRowName ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
var onClickTitle = function onClickTitle ( e ) {
2015-08-14 16:30:03 +00:00
e . preventDefault ( ) ;
_this . closed = ! _this . closed ;
return false ;
} ;
_domDom2 [ 'default' ] . addClass ( this . _ _ul , GUI . CLASS _CLOSED ) ;
2015-08-14 22:16:18 +00:00
_domDom2 [ 'default' ] . addClass ( titleRow , 'title' ) ;
_domDom2 [ 'default' ] . bind ( titleRow , 'click' , onClickTitle ) ;
2015-08-14 16:30:03 +00:00
if ( ! params . closed ) {
this . closed = false ;
}
}
if ( params . autoPlace ) {
if ( _utilsCommon2 [ 'default' ] . isUndefined ( params . parent ) ) {
2015-08-14 22:16:18 +00:00
if ( autoPlaceVirgin ) {
autoPlaceContainer = document . createElement ( 'div' ) ;
_domDom2 [ 'default' ] . addClass ( autoPlaceContainer , CSS _NAMESPACE ) ;
_domDom2 [ 'default' ] . addClass ( autoPlaceContainer , GUI . CLASS _AUTO _PLACE _CONTAINER ) ;
document . body . appendChild ( autoPlaceContainer ) ;
autoPlaceVirgin = false ;
2015-08-14 16:30:03 +00:00
}
// Put it in the dom for you.
2015-08-14 22:16:18 +00:00
autoPlaceContainer . appendChild ( this . domElement ) ;
2015-08-14 16:30:03 +00:00
// Apply the auto styles
_domDom2 [ 'default' ] . addClass ( this . domElement , GUI . CLASS _AUTO _PLACE ) ;
}
// Make it not elastic.
2015-08-14 20:29:30 +00:00
if ( ! this . parent ) {
setWidth ( _this , params . width ) ;
}
2015-08-14 16:30:03 +00:00
}
_domDom2 [ 'default' ] . bind ( window , 'resize' , function ( ) {
_this . onResize ( ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( this . _ _ul , 'webkitTransitionEnd' , function ( ) {
_this . onResize ( ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( this . _ _ul , 'transitionend' , function ( ) {
_this . onResize ( ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( this . _ _ul , 'oTransitionEnd' , function ( ) {
_this . onResize ( ) ;
} ) ;
this . onResize ( ) ;
if ( params . resizable ) {
addResizeHandle ( this ) ;
}
saveToLocalStorage = function ( ) {
if ( SUPPORTS _LOCAL _STORAGE && localStorage . getItem ( getLocalStorageHash ( _this , 'isLocal' ) ) === 'true' ) {
localStorage . setItem ( getLocalStorageHash ( _this , 'gui' ) , JSON . stringify ( _this . getSaveObject ( ) ) ) ;
}
} ;
// expose this method publicly
this . saveToLocalStorageIfPossible = saveToLocalStorage ;
function resetWidth ( ) {
var root = _this . getRoot ( ) ;
root . width += 1 ;
_utilsCommon2 [ 'default' ] . defer ( function ( ) {
root . width -= 1 ;
} ) ;
}
if ( ! params . parent ) {
resetWidth ( ) ;
}
} ;
GUI . toggleHide = function ( ) {
hide = ! hide ;
2015-08-14 22:16:18 +00:00
_utilsCommon2 [ 'default' ] . each ( hideableGuis , function ( gui ) {
2015-08-14 16:30:03 +00:00
gui . domElement . style . zIndex = hide ? - 999 : 999 ;
gui . domElement . style . opacity = hide ? 0 : 1 ;
} ) ;
} ;
GUI . CLASS _AUTO _PLACE = 'a' ;
GUI . CLASS _AUTO _PLACE _CONTAINER = 'ac' ;
GUI . CLASS _MAIN = 'main' ;
GUI . CLASS _CONTROLLER _ROW = 'cr' ;
GUI . CLASS _TOO _TALL = 'taller-than-window' ;
GUI . CLASS _CLOSED = 'closed' ;
GUI . CLASS _CLOSE _BUTTON = 'close-button' ;
GUI . CLASS _DRAG = 'drag' ;
GUI . DEFAULT _WIDTH = 245 ;
GUI . TEXT _CLOSED = 'Close Controls' ;
GUI . TEXT _OPEN = 'Open Controls' ;
_domDom2 [ 'default' ] . bind ( window , 'keydown' , function ( e ) {
2015-08-14 22:16:18 +00:00
if ( document . activeElement . type !== 'text' && ( e . which === HIDE _KEY _CODE || e . keyCode === HIDE _KEY _CODE ) ) {
2015-08-14 16:30:03 +00:00
GUI . toggleHide ( ) ;
}
} , false ) ;
_utilsCommon2 [ 'default' ] . extend ( GUI . prototype ,
/** @lends dat.gui.GUI */
{
/ * *
* @ param object
* @ param property
* @ returns { dat . controllers . Controller } The new controller that was added .
* @ instance
* /
add : ( function ( _add ) {
function add ( _x , _x2 ) {
return _add . apply ( this , arguments ) ;
}
add . toString = function ( ) {
return _add . toString ( ) ;
} ;
return add ;
} ) ( function ( object , property ) {
return add ( this , object , property , {
factoryArgs : Array . prototype . slice . call ( arguments , 2 )
} ) ;
} ) ,
/ * *
* @ param object
* @ param property
* @ returns { dat . controllers . ColorController } The new controller that was added .
* @ instance
* /
addColor : function addColor ( object , property ) {
return add ( this , object , property , {
color : true
} ) ;
} ,
/ * *
* @ param controller
* @ instance
* /
remove : function remove ( controller ) {
// TODO listening?
this . _ _ul . removeChild ( controller . _ _li ) ;
this . _ _controllers . splice ( this . _ _controllers . indexOf ( controller ) , 1 ) ;
var _this = this ;
_utilsCommon2 [ 'default' ] . defer ( function ( ) {
_this . onResize ( ) ;
} ) ;
} ,
destroy : function destroy ( ) {
if ( this . autoPlace ) {
2015-08-14 22:16:18 +00:00
autoPlaceContainer . removeChild ( this . domElement ) ;
2015-08-14 16:30:03 +00:00
}
} ,
/ * *
* @ param name
* @ returns { dat . gui . GUI } The new folder .
* @ throws { Error } if this GUI already has a folder by the specified
* name
* @ instance
* /
addFolder : function addFolder ( name ) {
// We have to prevent collisions on names in order to have a key
// by which to remember saved values
if ( this . _ _folders [ name ] !== undefined ) {
throw new Error ( 'You already have a folder in this GUI by the' + ' name "' + name + '"' ) ;
}
2015-08-14 22:16:18 +00:00
var newGuiParams = { name : name , parent : this } ;
2015-08-14 16:30:03 +00:00
// We need to pass down the autoPlace trait so that we can
// attach event listeners to open/close folder actions to
// ensure that a scrollbar appears if the window is too short.
2015-08-14 22:16:18 +00:00
newGuiParams . autoPlace = this . autoPlace ;
2015-08-14 16:30:03 +00:00
// Do we have saved appearance data for this folder?
if ( this . load && // Anything loaded?
this . load . folders && // Was my parent a dead-end?
this . load . folders [ name ] ) {
// Did daddy remember me?
// Start me closed if I was closed
2015-08-14 22:16:18 +00:00
newGuiParams . closed = this . load . folders [ name ] . closed ;
2015-08-14 16:30:03 +00:00
// Pass down the loaded data
2015-08-14 22:16:18 +00:00
newGuiParams . load = this . load . folders [ name ] ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
var gui = new GUI ( newGuiParams ) ;
2015-08-14 16:30:03 +00:00
this . _ _folders [ name ] = gui ;
var li = addRow ( this , gui . domElement ) ;
_domDom2 [ 'default' ] . addClass ( li , 'folder' ) ;
return gui ;
} ,
open : function open ( ) {
this . closed = false ;
} ,
close : function close ( ) {
this . closed = true ;
} ,
onResize : function onResize ( ) {
var root = this . getRoot ( ) ;
if ( root . scrollable ) {
2015-08-14 22:16:18 +00:00
var _top = _domDom2 [ 'default' ] . getOffset ( root . _ _ul ) . top ;
2015-08-14 16:30:03 +00:00
var h = 0 ;
_utilsCommon2 [ 'default' ] . each ( root . _ _ul . childNodes , function ( node ) {
2015-08-14 22:16:18 +00:00
if ( ! ( root . autoPlace && node === root . _ _save _row ) ) {
h += _domDom2 [ 'default' ] . getHeight ( node ) ;
}
2015-08-14 16:30:03 +00:00
} ) ;
2015-08-14 22:16:18 +00:00
if ( window . innerHeight - _top - CLOSE _BUTTON _HEIGHT < h ) {
2015-08-14 16:30:03 +00:00
_domDom2 [ 'default' ] . addClass ( root . domElement , GUI . CLASS _TOO _TALL ) ;
2015-08-14 22:16:18 +00:00
root . _ _ul . style . height = window . innerHeight - _top - CLOSE _BUTTON _HEIGHT + 'px' ;
2015-08-14 16:30:03 +00:00
} else {
_domDom2 [ 'default' ] . removeClass ( root . domElement , GUI . CLASS _TOO _TALL ) ;
root . _ _ul . style . height = 'auto' ;
}
}
if ( root . _ _resize _handle ) {
_utilsCommon2 [ 'default' ] . defer ( function ( ) {
root . _ _resize _handle . style . height = root . _ _ul . offsetHeight + 'px' ;
} ) ;
}
if ( root . _ _closeButton ) {
root . _ _closeButton . style . width = root . width + 'px' ;
}
} ,
/ * *
* Mark objects for saving . The order of these objects cannot change as
* the GUI grows . When remembering new objects , append them to the end
* of the list .
*
* @ param { Object ... } objects
* @ throws { Error } if not called on a top level GUI .
* @ instance
* /
remember : function remember ( ) {
if ( _utilsCommon2 [ 'default' ] . isUndefined ( SAVE _DIALOGUE ) ) {
SAVE _DIALOGUE = new _domCenteredDiv2 [ 'default' ] ( ) ;
SAVE _DIALOGUE . domElement . innerHTML = _htmlSaveDialogueHtml2 [ 'default' ] ;
}
if ( this . parent ) {
2015-08-14 22:16:18 +00:00
throw new Error ( 'You can only call remember on a top level GUI.' ) ;
2015-08-14 16:30:03 +00:00
}
var _this = this ;
_utilsCommon2 [ 'default' ] . each ( Array . prototype . slice . call ( arguments ) , function ( object ) {
2015-08-14 22:16:18 +00:00
if ( _this . _ _rememberedObjects . length === 0 ) {
2015-08-14 16:30:03 +00:00
addSaveMenu ( _this ) ;
}
2015-08-14 22:16:18 +00:00
if ( _this . _ _rememberedObjects . indexOf ( object ) === - 1 ) {
2015-08-14 16:30:03 +00:00
_this . _ _rememberedObjects . push ( object ) ;
}
} ) ;
if ( this . autoPlace ) {
// Set save row width
setWidth ( this , this . width ) ;
}
} ,
/ * *
* @ returns { dat . gui . GUI } the topmost parent GUI of a nested GUI .
* @ instance
* /
getRoot : function getRoot ( ) {
var gui = this ;
while ( gui . parent ) {
gui = gui . parent ;
}
return gui ;
} ,
/ * *
* @ returns { Object } a JSON object representing the current state of
* this GUI as well as its remembered properties .
* @ instance
* /
getSaveObject : function getSaveObject ( ) {
var toReturn = this . load ;
toReturn . closed = this . closed ;
// Am I remembering any values?
if ( this . _ _rememberedObjects . length > 0 ) {
toReturn . preset = this . preset ;
if ( ! toReturn . remembered ) {
toReturn . remembered = { } ;
}
toReturn . remembered [ this . preset ] = getCurrentPreset ( this ) ;
}
toReturn . folders = { } ;
_utilsCommon2 [ 'default' ] . each ( this . _ _folders , function ( element , key ) {
toReturn . folders [ key ] = element . getSaveObject ( ) ;
} ) ;
return toReturn ;
} ,
save : function save ( ) {
if ( ! this . load . remembered ) {
this . load . remembered = { } ;
}
this . load . remembered [ this . preset ] = getCurrentPreset ( this ) ;
markPresetModified ( this , false ) ;
this . saveToLocalStorageIfPossible ( ) ;
} ,
saveAs : function saveAs ( presetName ) {
if ( ! this . load . remembered ) {
// Retain default values upon first save
this . load . remembered = { } ;
this . load . remembered [ DEFAULT _DEFAULT _PRESET _NAME ] = getCurrentPreset ( this , true ) ;
}
this . load . remembered [ presetName ] = getCurrentPreset ( this ) ;
this . preset = presetName ;
addPresetOption ( this , presetName , true ) ;
this . saveToLocalStorageIfPossible ( ) ;
} ,
revert : function revert ( gui ) {
_utilsCommon2 [ 'default' ] . each ( this . _ _controllers , function ( controller ) {
// Make revert work on Default.
if ( ! this . getRoot ( ) . load . remembered ) {
controller . setValue ( controller . initialValue ) ;
} else {
recallSavedValue ( gui || this . getRoot ( ) , controller ) ;
}
} , this ) ;
_utilsCommon2 [ 'default' ] . each ( this . _ _folders , function ( folder ) {
folder . revert ( folder ) ;
} ) ;
if ( ! gui ) {
markPresetModified ( this . getRoot ( ) , false ) ;
}
} ,
listen : function listen ( controller ) {
2015-08-14 22:16:18 +00:00
var init = this . _ _listening . length === 0 ;
2015-08-14 16:30:03 +00:00
this . _ _listening . push ( controller ) ;
2015-08-14 22:16:18 +00:00
if ( init ) {
updateDisplays ( this . _ _listening ) ;
}
2015-08-14 16:30:03 +00:00
}
} ) ;
/ * *
* Add a row to the end of the GUI or before another row .
*
* @ param gui
2015-08-14 20:29:30 +00:00
* @ param [ newDom ] If specified , inserts the dom content in the new row
2015-08-14 16:30:03 +00:00
* @ param [ liBefore ] If specified , places the new row before another row
* /
2015-08-14 20:29:30 +00:00
function addRow ( gui , newDom , liBefore ) {
2015-08-14 16:30:03 +00:00
var li = document . createElement ( 'li' ) ;
2015-08-14 20:29:30 +00:00
if ( newDom ) {
li . appendChild ( newDom ) ;
}
2015-08-14 16:30:03 +00:00
if ( liBefore ) {
gui . _ _ul . insertBefore ( li , params . before ) ;
} else {
gui . _ _ul . appendChild ( li ) ;
}
gui . onResize ( ) ;
return li ;
}
2015-08-14 20:29:30 +00:00
function markPresetModified ( gui , modified ) {
var opt = gui . _ _preset _select [ gui . _ _preset _select . selectedIndex ] ;
// console.log('mark', modified, opt);
if ( modified ) {
opt . innerHTML = opt . value + '*' ;
} else {
opt . innerHTML = opt . value ;
}
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
function augmentController ( gui , li , controller ) {
2015-08-14 16:30:03 +00:00
controller . _ _li = li ;
controller . _ _gui = gui ;
_utilsCommon2 [ 'default' ] . extend ( controller , {
options : function options ( _options ) {
if ( arguments . length > 1 ) {
controller . remove ( ) ;
return add ( gui , controller . object , controller . property , {
before : controller . _ _li . nextElementSibling ,
factoryArgs : [ _utilsCommon2 [ 'default' ] . toArray ( arguments ) ]
} ) ;
}
if ( _utilsCommon2 [ 'default' ] . isArray ( _options ) || _utilsCommon2 [ 'default' ] . isObject ( _options ) ) {
controller . remove ( ) ;
return add ( gui , controller . object , controller . property , {
before : controller . _ _li . nextElementSibling ,
factoryArgs : [ _options ]
} ) ;
}
} ,
name : function name ( v ) {
controller . _ _li . firstElementChild . firstElementChild . innerHTML = v ;
return controller ;
} ,
listen : function listen ( ) {
controller . _ _gui . listen ( controller ) ;
return controller ;
} ,
remove : function remove ( ) {
controller . _ _gui . remove ( controller ) ;
return controller ;
}
} ) ;
// All sliders should be accompanied by a box.
if ( controller instanceof _controllersNumberControllerSlider2 [ 'default' ] ) {
2015-08-14 20:29:30 +00:00
( function ( ) {
var box = new _controllersNumberControllerBox2 [ 'default' ] ( controller . object , controller . property , { min : controller . _ _min , max : controller . _ _max , step : controller . _ _step } ) ;
_utilsCommon2 [ 'default' ] . each ( [ 'updateDisplay' , 'onChange' , 'onFinishChange' ] , function ( method ) {
var pc = controller [ method ] ;
var pb = box [ method ] ;
controller [ method ] = box [ method ] = function ( ) {
var args = Array . prototype . slice . call ( arguments ) ;
pc . apply ( controller , args ) ;
return pb . apply ( box , args ) ;
} ;
} ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_domDom2 [ 'default' ] . addClass ( li , 'has-slider' ) ;
controller . domElement . insertBefore ( box . domElement , controller . domElement . firstElementChild ) ;
} ) ( ) ;
2015-08-14 16:30:03 +00:00
} else if ( controller instanceof _controllersNumberControllerBox2 [ 'default' ] ) {
var r = function r ( returned ) {
// Have we defined both boundaries?
if ( _utilsCommon2 [ 'default' ] . isNumber ( controller . _ _min ) && _utilsCommon2 [ 'default' ] . isNumber ( controller . _ _max ) ) {
// Well, then lets just replace this with a slider.
controller . remove ( ) ;
return add ( gui , controller . object , controller . property , {
before : controller . _ _li . nextElementSibling ,
factoryArgs : [ controller . _ _min , controller . _ _max , controller . _ _step ]
} ) ;
}
return returned ;
} ;
controller . min = _utilsCommon2 [ 'default' ] . compose ( r , controller . min ) ;
controller . max = _utilsCommon2 [ 'default' ] . compose ( r , controller . max ) ;
} else if ( controller instanceof _controllersBooleanController2 [ 'default' ] ) {
_domDom2 [ 'default' ] . bind ( li , 'click' , function ( ) {
_domDom2 [ 'default' ] . fakeEvent ( controller . _ _checkbox , 'click' ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( controller . _ _checkbox , 'click' , function ( e ) {
e . stopPropagation ( ) ; // Prevents double-toggle
} ) ;
} else if ( controller instanceof _controllersFunctionController2 [ 'default' ] ) {
_domDom2 [ 'default' ] . bind ( li , 'click' , function ( ) {
_domDom2 [ 'default' ] . fakeEvent ( controller . _ _button , 'click' ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( li , 'mouseover' , function ( ) {
_domDom2 [ 'default' ] . addClass ( controller . _ _button , 'hover' ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( li , 'mouseout' , function ( ) {
_domDom2 [ 'default' ] . removeClass ( controller . _ _button , 'hover' ) ;
} ) ;
} else if ( controller instanceof _controllersColorController2 [ 'default' ] ) {
_domDom2 [ 'default' ] . addClass ( li , 'color' ) ;
2015-08-14 20:29:30 +00:00
controller . updateDisplay = _utilsCommon2 [ 'default' ] . compose ( function ( val ) {
2015-08-14 16:30:03 +00:00
li . style . borderLeftColor = controller . _ _color . toString ( ) ;
2015-08-14 20:29:30 +00:00
return val ;
2015-08-14 16:30:03 +00:00
} , controller . updateDisplay ) ;
controller . updateDisplay ( ) ;
}
2015-08-14 20:29:30 +00:00
controller . setValue = _utilsCommon2 [ 'default' ] . compose ( function ( val ) {
2015-08-14 16:30:03 +00:00
if ( gui . getRoot ( ) . _ _preset _select && controller . isModified ( ) ) {
markPresetModified ( gui . getRoot ( ) , true ) ;
}
2015-08-14 20:29:30 +00:00
return val ;
2015-08-14 16:30:03 +00:00
} , controller . setValue ) ;
}
function recallSavedValue ( gui , controller ) {
// Find the topmost GUI, that's where remembered objects live.
var root = gui . getRoot ( ) ;
// Does the object we're controlling match anything we've been told to
// remember?
2015-08-14 20:29:30 +00:00
var matchedIndex = root . _ _rememberedObjects . indexOf ( controller . object ) ;
2015-08-14 16:30:03 +00:00
// Why yes, it does!
2015-08-14 20:29:30 +00:00
if ( matchedIndex !== - 1 ) {
2015-08-14 16:30:03 +00:00
// Let me fetch a map of controllers for thcommon.isObject.
2015-08-14 20:29:30 +00:00
var controllerMap = root . _ _rememberedObjectIndecesToControllers [ matchedIndex ] ;
2015-08-14 16:30:03 +00:00
// Ohp, I believe this is the first controller we've created for this
// object. Lets make the map fresh.
2015-08-14 20:29:30 +00:00
if ( controllerMap === undefined ) {
controllerMap = { } ;
root . _ _rememberedObjectIndecesToControllers [ matchedIndex ] = controllerMap ;
2015-08-14 16:30:03 +00:00
}
// Keep track of this controller
2015-08-14 20:29:30 +00:00
controllerMap [ controller . property ] = controller ;
2015-08-14 16:30:03 +00:00
// Okay, now have we saved any values for this controller?
if ( root . load && root . load . remembered ) {
2015-08-14 20:29:30 +00:00
var presetMap = root . load . remembered ;
2015-08-14 16:30:03 +00:00
// Which preset are we trying to load?
2015-08-14 20:29:30 +00:00
var preset = undefined ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
if ( presetMap [ gui . preset ] ) {
preset = presetMap [ gui . preset ] ;
} else if ( presetMap [ DEFAULT _DEFAULT _PRESET _NAME ] ) {
2015-08-14 16:30:03 +00:00
// Uhh, you can have the default instead?
2015-08-14 20:29:30 +00:00
preset = presetMap [ DEFAULT _DEFAULT _PRESET _NAME ] ;
2015-08-14 16:30:03 +00:00
} else {
// Nada.
return ;
}
2015-08-14 20:29:30 +00:00
// Did the loaded object remember thcommon.isObject? && Did we remember this particular property?
if ( preset [ matchedIndex ] && preset [ matchedIndex ] [ controller . property ] !== undefined ) {
2015-08-14 16:30:03 +00:00
// We did remember something for this guy ...
2015-08-14 20:29:30 +00:00
var value = preset [ matchedIndex ] [ controller . property ] ;
2015-08-14 16:30:03 +00:00
// And that's what it is.
controller . initialValue = value ;
controller . setValue ( value ) ;
}
}
}
}
2015-08-14 20:29:30 +00:00
function add ( gui , object , property , params ) {
if ( object [ property ] === undefined ) {
throw new Error ( 'Object "' + object + '" has no property "' + property + '"' ) ;
}
var controller = undefined ;
if ( params . color ) {
controller = new _controllersColorController2 [ 'default' ] ( object , property ) ;
} else {
var factoryArgs = [ object , property ] . concat ( params . factoryArgs ) ;
controller = _controllersControllerFactory2 [ 'default' ] . apply ( gui , factoryArgs ) ;
}
if ( params . before instanceof _controllersController2 [ 'default' ] ) {
params . before = params . before . _ _li ;
}
recallSavedValue ( gui , controller ) ;
_domDom2 [ 'default' ] . addClass ( controller . domElement , 'c' ) ;
var name = document . createElement ( 'span' ) ;
_domDom2 [ 'default' ] . addClass ( name , 'property-name' ) ;
name . innerHTML = controller . property ;
var container = document . createElement ( 'div' ) ;
container . appendChild ( name ) ;
container . appendChild ( controller . domElement ) ;
var li = addRow ( gui , container , params . before ) ;
_domDom2 [ 'default' ] . addClass ( li , GUI . CLASS _CONTROLLER _ROW ) ;
if ( controller instanceof _controllersColorController2 [ 'default' ] ) {
_domDom2 [ 'default' ] . addClass ( li , 'color' ) ;
} else {
_domDom2 [ 'default' ] . addClass ( li , typeof controller . getValue ( ) ) ;
}
augmentController ( gui , li , controller ) ;
gui . _ _controllers . push ( controller ) ;
return controller ;
}
2015-08-14 16:30:03 +00:00
function getLocalStorageHash ( gui , key ) {
// TODO how does this deal with multiple GUI's?
return document . location . href + '.' + key ;
}
2015-08-14 20:29:30 +00:00
function addPresetOption ( gui , name , setSelected ) {
var opt = document . createElement ( 'option' ) ;
opt . innerHTML = name ;
opt . value = name ;
gui . _ _preset _select . appendChild ( opt ) ;
if ( setSelected ) {
gui . _ _preset _select . selectedIndex = gui . _ _preset _select . length - 1 ;
}
}
2015-08-14 16:30:03 +00:00
2015-08-14 22:16:18 +00:00
function showHideExplain ( gui , explain ) {
2015-08-14 20:29:30 +00:00
explain . style . display = gui . useLocalStorage ? 'block' : 'none' ;
}
function addSaveMenu ( gui ) {
2015-08-14 16:30:03 +00:00
var div = gui . _ _save _row = document . createElement ( 'li' ) ;
_domDom2 [ 'default' ] . addClass ( gui . domElement , 'has-save' ) ;
gui . _ _ul . insertBefore ( div , gui . _ _ul . firstChild ) ;
_domDom2 [ 'default' ] . addClass ( div , 'save-row' ) ;
var gears = document . createElement ( 'span' ) ;
gears . innerHTML = ' ' ;
_domDom2 [ 'default' ] . addClass ( gears , 'button gears' ) ;
// TODO replace with FunctionController
var button = document . createElement ( 'span' ) ;
button . innerHTML = 'Save' ;
_domDom2 [ 'default' ] . addClass ( button , 'button' ) ;
_domDom2 [ 'default' ] . addClass ( button , 'save' ) ;
var button2 = document . createElement ( 'span' ) ;
button2 . innerHTML = 'New' ;
_domDom2 [ 'default' ] . addClass ( button2 , 'button' ) ;
_domDom2 [ 'default' ] . addClass ( button2 , 'save-as' ) ;
var button3 = document . createElement ( 'span' ) ;
button3 . innerHTML = 'Revert' ;
_domDom2 [ 'default' ] . addClass ( button3 , 'button' ) ;
_domDom2 [ 'default' ] . addClass ( button3 , 'revert' ) ;
var select = gui . _ _preset _select = document . createElement ( 'select' ) ;
if ( gui . load && gui . load . remembered ) {
_utilsCommon2 [ 'default' ] . each ( gui . load . remembered , function ( value , key ) {
2015-08-14 20:29:30 +00:00
addPresetOption ( gui , key , key === gui . preset ) ;
2015-08-14 16:30:03 +00:00
} ) ;
} else {
addPresetOption ( gui , DEFAULT _DEFAULT _PRESET _NAME , false ) ;
}
_domDom2 [ 'default' ] . bind ( select , 'change' , function ( ) {
for ( var index = 0 ; index < gui . _ _preset _select . length ; index ++ ) {
gui . _ _preset _select [ index ] . innerHTML = gui . _ _preset _select [ index ] . value ;
}
gui . preset = this . value ;
} ) ;
div . appendChild ( select ) ;
div . appendChild ( gears ) ;
div . appendChild ( button ) ;
div . appendChild ( button2 ) ;
div . appendChild ( button3 ) ;
if ( SUPPORTS _LOCAL _STORAGE ) {
( function ( ) {
2015-08-14 20:29:30 +00:00
var explain = document . getElementById ( 'dg-local-explain' ) ;
var localStorageCheckBox = document . getElementById ( 'dg-local-storage' ) ;
var saveLocally = document . getElementById ( 'dg-save-locally' ) ;
2015-08-14 16:30:03 +00:00
saveLocally . style . display = 'block' ;
if ( localStorage . getItem ( getLocalStorageHash ( gui , 'isLocal' ) ) === 'true' ) {
localStorageCheckBox . setAttribute ( 'checked' , 'checked' ) ;
}
2015-08-14 22:16:18 +00:00
showHideExplain ( gui , explain ) ;
2015-08-14 16:30:03 +00:00
// TODO: Use a boolean controller, fool!
_domDom2 [ 'default' ] . bind ( localStorageCheckBox , 'change' , function ( ) {
gui . useLocalStorage = ! gui . useLocalStorage ;
2015-08-14 22:16:18 +00:00
showHideExplain ( gui , explain ) ;
2015-08-14 16:30:03 +00:00
} ) ;
} ) ( ) ;
}
var newConstructorTextArea = document . getElementById ( 'dg-new-constructor' ) ;
_domDom2 [ 'default' ] . bind ( newConstructorTextArea , 'keydown' , function ( e ) {
2015-08-14 20:29:30 +00:00
if ( e . metaKey && ( e . which === 67 || e . keyCode === 67 ) ) {
2015-08-14 16:30:03 +00:00
SAVE _DIALOGUE . hide ( ) ;
}
} ) ;
_domDom2 [ 'default' ] . bind ( gears , 'click' , function ( ) {
newConstructorTextArea . innerHTML = JSON . stringify ( gui . getSaveObject ( ) , undefined , 2 ) ;
SAVE _DIALOGUE . show ( ) ;
newConstructorTextArea . focus ( ) ;
newConstructorTextArea . select ( ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( button , 'click' , function ( ) {
gui . save ( ) ;
} ) ;
_domDom2 [ 'default' ] . bind ( button2 , 'click' , function ( ) {
var presetName = prompt ( 'Enter a new preset name.' ) ;
2015-08-14 20:29:30 +00:00
if ( presetName ) {
gui . saveAs ( presetName ) ;
}
2015-08-14 16:30:03 +00:00
} ) ;
_domDom2 [ 'default' ] . bind ( button3 , 'click' , function ( ) {
gui . revert ( ) ;
} ) ;
2015-08-14 20:29:30 +00:00
// div.appendChild(button2);
2015-08-14 16:30:03 +00:00
}
function addResizeHandle ( gui ) {
2015-08-14 20:29:30 +00:00
var pmouseX = undefined ;
2015-08-14 16:30:03 +00:00
gui . _ _resize _handle = document . createElement ( 'div' ) ;
_utilsCommon2 [ 'default' ] . extend ( gui . _ _resize _handle . style , {
width : '6px' ,
marginLeft : '-3px' ,
height : '200px' ,
cursor : 'ew-resize' ,
position : 'absolute'
2015-08-14 20:29:30 +00:00
// border: '1px solid blue'
2015-08-14 16:30:03 +00:00
} ) ;
2015-08-14 20:29:30 +00:00
function drag ( e ) {
2015-08-14 16:30:03 +00:00
e . preventDefault ( ) ;
2015-08-14 20:29:30 +00:00
gui . width += pmouseX - e . clientX ;
gui . onResize ( ) ;
2015-08-14 16:30:03 +00:00
pmouseX = e . clientX ;
return false ;
}
2015-08-14 20:29:30 +00:00
function dragStop ( ) {
_domDom2 [ 'default' ] . removeClass ( gui . _ _closeButton , GUI . CLASS _DRAG ) ;
_domDom2 [ 'default' ] . unbind ( window , 'mousemove' , drag ) ;
_domDom2 [ 'default' ] . unbind ( window , 'mouseup' , dragStop ) ;
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
function dragStart ( e ) {
2015-08-14 16:30:03 +00:00
e . preventDefault ( ) ;
pmouseX = e . clientX ;
2015-08-14 20:29:30 +00:00
_domDom2 [ 'default' ] . addClass ( gui . _ _closeButton , GUI . CLASS _DRAG ) ;
_domDom2 [ 'default' ] . bind ( window , 'mousemove' , drag ) ;
_domDom2 [ 'default' ] . bind ( window , 'mouseup' , dragStop ) ;
2015-08-14 16:30:03 +00:00
return false ;
}
2015-08-14 20:29:30 +00:00
_domDom2 [ 'default' ] . bind ( gui . _ _resize _handle , 'mousedown' , dragStart ) ;
_domDom2 [ 'default' ] . bind ( gui . _ _closeButton , 'mousedown' , dragStart ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
gui . domElement . insertBefore ( gui . _ _resize _handle , gui . domElement . firstElementChild ) ;
2015-08-14 16:30:03 +00:00
}
function setWidth ( gui , w ) {
gui . domElement . style . width = w + 'px' ;
// Auto placed save-rows are position fixed, so we have to
// set the width manually if we want it to bleed to the edge
if ( gui . _ _save _row && gui . autoPlace ) {
gui . _ _save _row . style . width = w + 'px' ;
}
if ( gui . _ _closeButton ) {
gui . _ _closeButton . style . width = w + 'px' ;
}
}
function getCurrentPreset ( gui , useInitialValues ) {
var toReturn = { } ;
// For each object I'm remembering
_utilsCommon2 [ 'default' ] . each ( gui . _ _rememberedObjects , function ( val , index ) {
2015-08-14 20:29:30 +00:00
var savedValues = { } ;
2015-08-14 16:30:03 +00:00
// The controllers I've made for thcommon.isObject by property
2015-08-14 20:29:30 +00:00
var controllerMap = gui . _ _rememberedObjectIndecesToControllers [ index ] ;
2015-08-14 16:30:03 +00:00
// Remember each value for each property
2015-08-14 20:29:30 +00:00
_utilsCommon2 [ 'default' ] . each ( controllerMap , function ( controller , property ) {
savedValues [ property ] = useInitialValues ? controller . initialValue : controller . getValue ( ) ;
2015-08-14 16:30:03 +00:00
} ) ;
// Save the values for thcommon.isObject
2015-08-14 20:29:30 +00:00
toReturn [ index ] = savedValues ;
2015-08-14 16:30:03 +00:00
} ) ;
return toReturn ;
}
function setPresetSelectIndex ( gui ) {
for ( var index = 0 ; index < gui . _ _preset _select . length ; index ++ ) {
2015-08-14 20:29:30 +00:00
if ( gui . _ _preset _select [ index ] . value === gui . preset ) {
2015-08-14 16:30:03 +00:00
gui . _ _preset _select . selectedIndex = index ;
}
}
}
function updateDisplays ( controllerArray ) {
2015-08-14 20:29:30 +00:00
if ( controllerArray . length !== 0 ) {
_utilsRequestAnimationFrame2 [ 'default' ] ( function ( ) {
2015-08-14 16:30:03 +00:00
updateDisplays ( controllerArray ) ;
} ) ;
}
_utilsCommon2 [ 'default' ] . each ( controllerArray , function ( c ) {
c . updateDisplay ( ) ;
} ) ;
}
module . exports = GUI ;
/***/ } ,
/* 23 */
/***/ function ( module , exports ) {
module . exports = "<div id=\"dg-save\" class=\"dg dialogue\">\n\n Here's the new load parameter for your <code>GUI</code>'s constructor:\n\n <textarea id=\"dg-new-constructor\"></textarea>\n\n <div id=\"dg-save-locally\">\n\n <input id=\"dg-local-storage\" type=\"checkbox\"/> Automatically save\n values to <code>localStorage</code> on exit.\n\n <div id=\"dg-local-explain\">The values saved to <code>localStorage</code> will\n override those passed to <code>dat.GUI</code>'s constructor. This makes it\n easier to work incrementally, but <code>localStorage</code> is fragile,\n and your friends may not see the same values you do.\n\n </div>\n\n </div>\n\n</div>" ;
/***/ } ,
/* 24 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = _ _webpack _require _ _ ( 25 ) ;
if ( typeof content === 'string' ) content = [ [ module . id , content , '' ] ] ;
// add the styles to the DOM
var update = _ _webpack _require _ _ ( 19 ) ( content , { } ) ;
if ( content . locals ) module . exports = content . locals ;
// Hot Module Replacement
if ( false ) {
// When the styles change, update the <style> tags
if ( ! content . locals ) {
module . hot . accept ( "!!./../../../node_modules/css-loader/index.js!./../../../node_modules/sass-loader/index.js!./style.scss" , function ( ) {
var newContent = require ( "!!./../../../node_modules/css-loader/index.js!./../../../node_modules/sass-loader/index.js!./style.scss" ) ;
if ( typeof newContent === 'string' ) newContent = [ [ module . id , newContent , '' ] ] ;
update ( newContent ) ;
} ) ;
}
// When the module is disposed, remove the <style> tags
module . hot . dispose ( function ( ) { update ( ) ; } ) ;
}
/***/ } ,
/* 25 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
exports = module . exports = _ _webpack _require _ _ ( 18 ) ( ) ;
// imports
// module
exports . push ( [ module . id , " . dg { \ n /** Clear list styles */ \ n /* Auto-place container */ \ n /* Auto-placed GUI's */ \ n /* Line items that don't contain folders. */ \ n /** Folder names */ \ n /** Hides closed items */ \ n /** Controller row */ \ n /** Name-half (left) */ \ n /** Controller-half (right) */ \ n /** Controller placement */ \ n /** Shorter number boxes when slider is present. */ \ n /** Ensure the entire boolean and function row shows a hand */ } \ n . dg ul { \ n list - style : none ; \ n margin : 0 ; \ n padding : 0 ; \ n width : 100 % ; \ n clear : both ; } \ n . dg . ac { \ n position : fixed ; \ n top : 0 ; \ n left : 0 ; \ n right : 0 ; \ n height : 0 ; \ n z - index : 0 ; } \ n . dg : not ( . ac ) . main { \ n /** Exclude mains in ac so that we don't hide close button */ \ n overflow : hidden ; } \ n . dg . main { \ n - webkit - transition : opacity 0.1 s linear ; \ n - o - transition : opacity 0.1 s linear ; \ n - moz - transition : opacity 0.1 s linear ; \ n transition : opacity 0.1 s linear ; } \ n . dg . main . taller - than - window { \ n overflow - y : auto ; } \ n . dg . main . taller - than - window . close - button { \ n opacity : 1 ; \ n /* TODO, these are style notes */ \ n margin - top : - 1 px ; \ n border - top : 1 px solid # 2 c2c2c ; } \ n . dg . main ul . closed . close - button { \ n opacity : 1 ! important ; } \ n . dg . main : hover . close - button , \ n . dg . main . close - button . drag { \ n opacity : 1 ; } \ n . dg . main . close - button { \ n /*opacity: 0;*/ \ n - webkit - transition : opacity 0.1 s linear ; \ n - o - transition : opacity 0.1 s linear ; \ n - moz - transition : opacity 0.1 s linear ; \ n transition : opacity 0.1 s linear ; \ n border : 0 ; \ n position : absolute ; \ n line - height : 19 px ; \ n height : 20 px ; \ n /* TODO, these are style notes */ \ n cursor : pointer ; \ n text - align : center ; \ n background - color : # 000 ; } \ n . dg . main . close - button : hover { \ n background - color : # 111 ; } \ n . dg . a { \ n float : right ; \ n margin - right : 15 px ; \ n overflow - x : hidden ; } \ n . dg . a . has - save > ul { \ n margin - top : 27 px ; } \ n . dg . a . has - save > ul . closed { \ n margin - top : 0 ; } \ n . dg . a . save - row { \ n position : fixed ; \ n top : 0 ; \ n z - index : 1002 ; } \ n . dg li { \ n - webkit - transition : height 0.1 s ease - out ; \ n - o - transition : height 0.1 s ease - out ; \ n - moz - transition : height 0.1 s ease - out ; \ n transition : height 0.1 s ease - out ; } \ n . dg li : not ( . folder ) { \ n cursor : auto ; \ n height : 27 px ; \ n line - height : 27 px ; \ n overflow : hidden ; \ n padding : 0 4 px 0 5 px ; } \ n . dg li . folder { \ n padding : 0 ; \ n border - left : 4 px solid transparent ; } \ n . dg li . title { \ n cursor : pointer ; \ n margin - left : - 4 px ; } \ n . dg . closed li : not ( . title ) , \ n . dg . closed ul li , \ n . dg . closed ul li > * { \ n height : 0 ; \ n overflow : hidden ; \ n border : 0 ; } \ n . dg . cr { \ n clear : both ; \ n padding - left : 3 px ; \ n height : 27 px ; } \ n . dg . property - name { \ n cursor : default ; \ n float : left ; \ n clear : left ; \ n width : 40 % ; \ n overflow : hidden ; \ n text - overflow : ellipsis ; } \ n . dg . c { \ n float : left ; \ n width : 60 % ; } \ n . dg . c input [ type = text ] { \ n border : 0 ; \ n margin - top : 4 px ; \ n padding : 3 px ; \ n width : 100 % ; \ n float : right ; } \ n . dg . has - slider input [ type = text ] { \ n width : 30 % ; \ n /*display: none;*/ \ n margin - left : 0 ; } \ n . dg . slider { \ n float : left ; \ n width : 66 % ; \ n margin - left : - 5 px ; \ n margin - right : 0 ; \ n height : 19 px ; \ n margin - top : 4 px ; } \ n . dg . slider - fg { \ n height : 100 % ; } \ n . dg . c input [ type = checkbox ] { \ n margin - top : 9 px ; } \ n . dg . c select { \ n margin - top : 5 px ; } \ n . dg . cr . function , \ n . dg . cr . function . property - name , . dg . cr . function * , \ n . dg . cr . boolean , \ n . dg . cr . boolean * { \ n cursor : pointer ; } \ n . dg . selector { \ n display : none ; \ n position : absolute ; \ n margin - left : - 9 px ; \ n margin - top : 23 px ; \ n z - index : 10 ; } \ n . dg . c : hover . selector , \ n . dg . selector . drag { \ n display : block ; } \ n . dg li . save - row { \ n padding : 0 ; } \ n . dg li . save - row . button { \ n display : inline - block ; \ n padding : 0 px 6 px ; } \ n . dg . dialogue { \ n background - co
// exports
/***/ } ,
/* 26 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
2015-08-14 20:29:30 +00:00
var _OptionController = _ _webpack _require _ _ ( 10 ) ;
2015-08-14 16:30:03 +00:00
var _OptionController2 = _interopRequireDefault ( _OptionController ) ;
var _NumberControllerBox = _ _webpack _require _ _ ( 13 ) ;
var _NumberControllerBox2 = _interopRequireDefault ( _NumberControllerBox ) ;
var _NumberControllerSlider = _ _webpack _require _ _ ( 14 ) ;
var _NumberControllerSlider2 = _interopRequireDefault ( _NumberControllerSlider ) ;
var _StringController = _ _webpack _require _ _ ( 11 ) ;
var _StringController2 = _interopRequireDefault ( _StringController ) ;
var _FunctionController = _ _webpack _require _ _ ( 20 ) ;
var _FunctionController2 = _interopRequireDefault ( _FunctionController ) ;
var _BooleanController = _ _webpack _require _ _ ( 8 ) ;
var _BooleanController2 = _interopRequireDefault ( _BooleanController ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
var ControllerFactory = function ControllerFactory ( object , property ) {
var initialValue = object [ property ] ;
// Providing options?
if ( _utilsCommon2 [ 'default' ] . isArray ( arguments [ 2 ] ) || _utilsCommon2 [ 'default' ] . isObject ( arguments [ 2 ] ) ) {
return new _OptionController2 [ 'default' ] ( object , property , arguments [ 2 ] ) ;
}
// Providing a map?
if ( _utilsCommon2 [ 'default' ] . isNumber ( initialValue ) ) {
if ( _utilsCommon2 [ 'default' ] . isNumber ( arguments [ 2 ] ) && _utilsCommon2 [ 'default' ] . isNumber ( arguments [ 3 ] ) ) {
// Has min and max.
2015-08-14 22:16:18 +00:00
if ( _utilsCommon2 [ 'default' ] . isNumber ( arguments [ 4 ] ) ) {
// has step
return new _NumberControllerSlider2 [ 'default' ] ( object , property , arguments [ 2 ] , arguments [ 3 ] , arguments [ 4 ] ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
return new _NumberControllerSlider2 [ 'default' ] ( object , property , arguments [ 2 ] , arguments [ 3 ] ) ;
2015-08-14 16:30:03 +00:00
}
2015-08-14 22:16:18 +00:00
return new _NumberControllerBox2 [ 'default' ] ( object , property , { min : arguments [ 2 ] , max : arguments [ 3 ] } ) ;
2015-08-14 16:30:03 +00:00
}
if ( _utilsCommon2 [ 'default' ] . isString ( initialValue ) ) {
return new _StringController2 [ 'default' ] ( object , property ) ;
}
if ( _utilsCommon2 [ 'default' ] . isFunction ( initialValue ) ) {
return new _FunctionController2 [ 'default' ] ( object , property , '' ) ;
}
if ( _utilsCommon2 [ 'default' ] . isBoolean ( initialValue ) ) {
return new _BooleanController2 [ 'default' ] ( object , property ) ;
}
} ;
exports [ 'default' ] = ControllerFactory ;
module . exports = exports [ 'default' ] ;
/***/ } ,
/* 27 */
/***/ function ( module , exports ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
"use strict" ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
exports [ "default" ] = function ( ) {
function requestAnimationFrame ( callback ) {
// TODO: Get rid of window
2015-08-14 16:30:03 +00:00
window . setTimeout ( callback , 1000 / 60 ) ;
2015-08-14 20:29:30 +00:00
}
return window . requestAnimationFrame || window . webkitRequestAnimationFrame || window . mozRequestAnimationFrame || window . oRequestAnimationFrame || window . msRequestAnimationFrame || requestAnimationFrame ;
2015-08-14 16:30:03 +00:00
} ;
2015-08-14 20:29:30 +00:00
module . exports = exports [ "default" ] ;
2015-08-14 16:30:03 +00:00
/***/ } ,
/* 28 */
/***/ function ( module , exports , _ _webpack _require _ _ ) {
/ * *
* dat - gui JavaScript Controller Library
* http : //code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team , Google Creative Lab
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
* /
'use strict' ;
2015-08-14 20:29:30 +00:00
exports . _ _esModule = true ;
2015-08-14 16:30:03 +00:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { 'default' : obj } ; }
2015-08-14 20:29:30 +00:00
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
var _domDom = _ _webpack _require _ _ ( 9 ) ;
2015-08-14 16:30:03 +00:00
var _domDom2 = _interopRequireDefault ( _domDom ) ;
var _utilsCommon = _ _webpack _require _ _ ( 5 ) ;
var _utilsCommon2 = _interopRequireDefault ( _utilsCommon ) ;
2015-08-14 20:29:30 +00:00
var CenteredDiv = ( function ( ) {
function CenteredDiv ( ) {
_classCallCheck ( this , CenteredDiv ) ;
this . backgroundElement = document . createElement ( 'div' ) ;
_utilsCommon2 [ 'default' ] . extend ( this . backgroundElement . style , {
backgroundColor : 'rgba(0,0,0,0.8)' ,
top : 0 ,
left : 0 ,
display : 'none' ,
zIndex : '1000' ,
opacity : 0 ,
WebkitTransition : 'opacity 0.2s linear' ,
transition : 'opacity 0.2s linear'
} ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_domDom2 [ 'default' ] . makeFullscreen ( this . backgroundElement ) ;
this . backgroundElement . style . position = 'fixed' ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . domElement = document . createElement ( 'div' ) ;
_utilsCommon2 [ 'default' ] . extend ( this . domElement . style , {
position : 'fixed' ,
display : 'none' ,
zIndex : '1001' ,
opacity : 0 ,
WebkitTransition : '-webkit-transform 0.2s ease-out, opacity 0.2s linear' ,
transition : 'transform 0.2s ease-out, opacity 0.2s linear'
} ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
document . body . appendChild ( this . backgroundElement ) ;
document . body . appendChild ( this . domElement ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var _this = this ;
_domDom2 [ 'default' ] . bind ( this . backgroundElement , 'click' , function ( ) {
_this . hide ( ) ;
} ) ;
}
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
CenteredDiv . prototype . show = function show ( ) {
var _this = this ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . backgroundElement . style . display = 'block' ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . domElement . style . display = 'block' ;
this . domElement . style . opacity = 0 ;
// this.domElement.style.top = '52%';
this . domElement . style . webkitTransform = 'scale(1.1)' ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . layout ( ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_utilsCommon2 [ 'default' ] . defer ( function ( ) {
_this . backgroundElement . style . opacity = 1 ;
_this . domElement . style . opacity = 1 ;
_this . domElement . style . webkitTransform = 'scale(1)' ;
} ) ;
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
/ * *
* Hide centered div
* /
CenteredDiv . prototype . hide = function hide ( ) {
var _this = this ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
var hide = function hide ( ) {
_this . domElement . style . display = 'none' ;
_this . backgroundElement . style . display = 'none' ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_domDom2 [ 'default' ] . unbind ( _this . domElement , 'webkitTransitionEnd' , hide ) ;
_domDom2 [ 'default' ] . unbind ( _this . domElement , 'transitionend' , hide ) ;
_domDom2 [ 'default' ] . unbind ( _this . domElement , 'oTransitionEnd' , hide ) ;
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
_domDom2 [ 'default' ] . bind ( this . domElement , 'webkitTransitionEnd' , hide ) ;
_domDom2 [ 'default' ] . bind ( this . domElement , 'transitionend' , hide ) ;
_domDom2 [ 'default' ] . bind ( this . domElement , 'oTransitionEnd' , hide ) ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
this . backgroundElement . style . opacity = 0 ;
// this.domElement.style.top = '48%';
this . domElement . style . opacity = 0 ;
this . domElement . style . webkitTransform = 'scale(1.1)' ;
2015-08-14 16:30:03 +00:00
} ;
2015-08-14 20:29:30 +00:00
CenteredDiv . prototype . layout = function layout ( ) {
this . domElement . style . left = window . innerWidth / 2 - _domDom2 [ 'default' ] . getWidth ( this . domElement ) / 2 + 'px' ;
this . domElement . style . top = window . innerHeight / 2 - _domDom2 [ 'default' ] . getHeight ( this . domElement ) / 2 + 'px' ;
} ;
2015-08-14 16:30:03 +00:00
2015-08-14 20:29:30 +00:00
return CenteredDiv ;
} ) ( ) ;
2015-08-14 16:30:03 +00:00
exports [ 'default' ] = CenteredDiv ;
module . exports = exports [ 'default' ] ;
/***/ }
/******/ ] )
} ) ;
;
//# sourceMappingURL=dat.gui.js.map