From 268a6b4be8c4457140328ad6f310f7d88b0739c6 Mon Sep 17 00:00:00 2001 From: bemonta Date: Mon, 17 Sep 2018 15:48:33 -0600 Subject: [PATCH] fix to forms --- public/admin/api.js | 1709 +++++++++++----------------- public/admin/undelete.js | 2261 +++++++++++++++----------------------- public/css/styles.css | 2 +- public/scot.js | 1 + 4 files changed, 1535 insertions(+), 2438 deletions(-) create mode 100644 public/scot.js diff --git a/public/admin/api.js b/public/admin/api.js index ad0168eb1..3a92e7059 100644 --- a/public/admin/api.js +++ b/public/admin/api.js @@ -1,4 +1,4 @@ -(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject'); @@ -717,18 +663,18 @@ module.exports = function (IS_INCLUDES) { }; }; -},{"./_to-absolute-index":71,"./_to-iobject":73,"./_to-length":74}],27:[function(require,module,exports){ +},{"./_to-absolute-index":70,"./_to-iobject":72,"./_to-length":73}],26:[function(require,module,exports){ var toString = {}.toString; module.exports = function (it) { return toString.call(it).slice(8, -1); }; -},{}],28:[function(require,module,exports){ -var core = module.exports = { version: '2.5.7' }; +},{}],27:[function(require,module,exports){ +var core = module.exports = { version: '2.5.3' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef -},{}],29:[function(require,module,exports){ +},{}],28:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function (fn, that, length) { @@ -750,20 +696,20 @@ module.exports = function (fn, that, length) { }; }; -},{"./_a-function":23}],30:[function(require,module,exports){ +},{"./_a-function":22}],29:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function (it) { if (it == undefined) throw TypeError("Can't call method on " + it); return it; }; -},{}],31:[function(require,module,exports){ +},{}],30:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function () { return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; }); -},{"./_fails":36}],32:[function(require,module,exports){ +},{"./_fails":35}],31:[function(require,module,exports){ var isObject = require('./_is-object'); var document = require('./_global').document; // typeof document.createElement is 'object' in old IE @@ -772,13 +718,13 @@ module.exports = function (it) { return is ? document.createElement(it) : {}; }; -},{"./_global":37,"./_is-object":44}],33:[function(require,module,exports){ +},{"./_global":36,"./_is-object":43}],32:[function(require,module,exports){ // IE 8- don't enum bug keys module.exports = ( 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],34:[function(require,module,exports){ +},{}],33:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys'); var gOPS = require('./_object-gops'); @@ -795,12 +741,11 @@ module.exports = function (it) { } return result; }; -},{"./_object-gops":58,"./_object-keys":61,"./_object-pie":62}],35:[function(require,module,exports){ +},{"./_object-gops":57,"./_object-keys":60,"./_object-pie":61}],34:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var ctx = require('./_ctx'); var hide = require('./_hide'); -var has = require('./_has'); var PROTOTYPE = 'prototype'; var $export = function (type, name, source) { @@ -818,7 +763,7 @@ var $export = function (type, name, source) { for (key in source) { // contains in native own = !IS_FORCED && target && target[key] !== undefined; - if (own && has(exports, key)) continue; + if (own && key in exports) continue; // export native or passed out = own ? target[key] : source[key]; // prevent global pollution for namespaces @@ -859,7 +804,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":28,"./_ctx":29,"./_global":37,"./_has":38,"./_hide":39}],36:[function(require,module,exports){ +},{"./_core":27,"./_ctx":28,"./_global":36,"./_hide":38}],35:[function(require,module,exports){ module.exports = function (exec) { try { return !!exec(); @@ -868,7 +813,7 @@ module.exports = function (exec) { } }; -},{}],37:[function(require,module,exports){ +},{}],36:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self @@ -876,13 +821,13 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef -},{}],38:[function(require,module,exports){ +},{}],37:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; -},{}],39:[function(require,module,exports){ +},{}],38:[function(require,module,exports){ var dP = require('./_object-dp'); var createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function (object, key, value) { @@ -892,16 +837,16 @@ module.exports = require('./_descriptors') ? function (object, key, value) { return object; }; -},{"./_descriptors":31,"./_object-dp":53,"./_property-desc":64}],40:[function(require,module,exports){ +},{"./_descriptors":30,"./_object-dp":52,"./_property-desc":63}],39:[function(require,module,exports){ var document = require('./_global').document; module.exports = document && document.documentElement; -},{"./_global":37}],41:[function(require,module,exports){ +},{"./_global":36}],40:[function(require,module,exports){ module.exports = !require('./_descriptors') && !require('./_fails')(function () { return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7; }); -},{"./_descriptors":31,"./_dom-create":32,"./_fails":36}],42:[function(require,module,exports){ +},{"./_descriptors":30,"./_dom-create":31,"./_fails":35}],41:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); // eslint-disable-next-line no-prototype-builtins @@ -909,19 +854,19 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":27}],43:[function(require,module,exports){ +},{"./_cof":26}],42:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg) { return cof(arg) == 'Array'; }; -},{"./_cof":27}],44:[function(require,module,exports){ +},{"./_cof":26}],43:[function(require,module,exports){ module.exports = function (it) { return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],45:[function(require,module,exports){ +},{}],44:[function(require,module,exports){ 'use strict'; var create = require('./_object-create'); var descriptor = require('./_property-desc'); @@ -936,12 +881,13 @@ module.exports = function (Constructor, NAME, next) { setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":39,"./_object-create":52,"./_property-desc":64,"./_set-to-string-tag":67,"./_wks":80}],46:[function(require,module,exports){ +},{"./_hide":38,"./_object-create":51,"./_property-desc":63,"./_set-to-string-tag":66,"./_wks":79}],45:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); var $export = require('./_export'); var redefine = require('./_redefine'); var hide = require('./_hide'); +var has = require('./_has'); var Iterators = require('./_iterators'); var $iterCreate = require('./_iter-create'); var setToStringTag = require('./_set-to-string-tag'); @@ -968,7 +914,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE var VALUES_BUG = false; var proto = Base.prototype; var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]; - var $default = $native || getMethod(DEFAULT); + var $default = (!BUGGY && $native) || getMethod(DEFAULT); var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined; var $anyNative = NAME == 'Array' ? proto.entries || $native : $native; var methods, key, IteratorPrototype; @@ -979,7 +925,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE // Set @@toStringTag to native iterators setToStringTag(IteratorPrototype, TAG, true); // fix for some old engines - if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis); + if (!LIBRARY && !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis); } } // fix Array#{values, @@iterator}.name in V8 / FF @@ -1007,18 +953,18 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE return methods; }; -},{"./_export":35,"./_hide":39,"./_iter-create":45,"./_iterators":48,"./_library":49,"./_object-gpo":59,"./_redefine":65,"./_set-to-string-tag":67,"./_wks":80}],47:[function(require,module,exports){ +},{"./_export":34,"./_has":37,"./_hide":38,"./_iter-create":44,"./_iterators":47,"./_library":48,"./_object-gpo":58,"./_redefine":64,"./_set-to-string-tag":66,"./_wks":79}],46:[function(require,module,exports){ module.exports = function (done, value) { return { value: value, done: !!done }; }; -},{}],48:[function(require,module,exports){ +},{}],47:[function(require,module,exports){ module.exports = {}; -},{}],49:[function(require,module,exports){ +},{}],48:[function(require,module,exports){ module.exports = true; -},{}],50:[function(require,module,exports){ +},{}],49:[function(require,module,exports){ var META = require('./_uid')('meta'); var isObject = require('./_is-object'); var has = require('./_has'); @@ -1073,7 +1019,7 @@ var meta = module.exports = { onFreeze: onFreeze }; -},{"./_fails":36,"./_has":38,"./_is-object":44,"./_object-dp":53,"./_uid":77}],51:[function(require,module,exports){ +},{"./_fails":35,"./_has":37,"./_is-object":43,"./_object-dp":52,"./_uid":76}],50:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var getKeys = require('./_object-keys'); @@ -1109,7 +1055,7 @@ module.exports = !$assign || require('./_fails')(function () { } return T; } : $assign; -},{"./_fails":36,"./_iobject":42,"./_object-gops":58,"./_object-keys":61,"./_object-pie":62,"./_to-object":75}],52:[function(require,module,exports){ +},{"./_fails":35,"./_iobject":41,"./_object-gops":57,"./_object-keys":60,"./_object-pie":61,"./_to-object":74}],51:[function(require,module,exports){ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) var anObject = require('./_an-object'); var dPs = require('./_object-dps'); @@ -1152,7 +1098,7 @@ module.exports = Object.create || function create(O, Properties) { return Properties === undefined ? result : dPs(result, Properties); }; -},{"./_an-object":25,"./_dom-create":32,"./_enum-bug-keys":33,"./_html":40,"./_object-dps":54,"./_shared-key":68}],53:[function(require,module,exports){ +},{"./_an-object":24,"./_dom-create":31,"./_enum-bug-keys":32,"./_html":39,"./_object-dps":53,"./_shared-key":67}],52:[function(require,module,exports){ var anObject = require('./_an-object'); var IE8_DOM_DEFINE = require('./_ie8-dom-define'); var toPrimitive = require('./_to-primitive'); @@ -1170,7 +1116,7 @@ exports.f = require('./_descriptors') ? Object.defineProperty : function defineP return O; }; -},{"./_an-object":25,"./_descriptors":31,"./_ie8-dom-define":41,"./_to-primitive":76}],54:[function(require,module,exports){ +},{"./_an-object":24,"./_descriptors":30,"./_ie8-dom-define":40,"./_to-primitive":75}],53:[function(require,module,exports){ var dP = require('./_object-dp'); var anObject = require('./_an-object'); var getKeys = require('./_object-keys'); @@ -1185,7 +1131,7 @@ module.exports = require('./_descriptors') ? Object.defineProperties : function return O; }; -},{"./_an-object":25,"./_descriptors":31,"./_object-dp":53,"./_object-keys":61}],55:[function(require,module,exports){ +},{"./_an-object":24,"./_descriptors":30,"./_object-dp":52,"./_object-keys":60}],54:[function(require,module,exports){ var pIE = require('./_object-pie'); var createDesc = require('./_property-desc'); var toIObject = require('./_to-iobject'); @@ -1203,7 +1149,7 @@ exports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); }; -},{"./_descriptors":31,"./_has":38,"./_ie8-dom-define":41,"./_object-pie":62,"./_property-desc":64,"./_to-iobject":73,"./_to-primitive":76}],56:[function(require,module,exports){ +},{"./_descriptors":30,"./_has":37,"./_ie8-dom-define":40,"./_object-pie":61,"./_property-desc":63,"./_to-iobject":72,"./_to-primitive":75}],55:[function(require,module,exports){ // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window var toIObject = require('./_to-iobject'); var gOPN = require('./_object-gopn').f; @@ -1224,7 +1170,7 @@ module.exports.f = function getOwnPropertyNames(it) { return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it)); }; -},{"./_object-gopn":57,"./_to-iobject":73}],57:[function(require,module,exports){ +},{"./_object-gopn":56,"./_to-iobject":72}],56:[function(require,module,exports){ // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) var $keys = require('./_object-keys-internal'); var hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype'); @@ -1233,10 +1179,10 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return $keys(O, hiddenKeys); }; -},{"./_enum-bug-keys":33,"./_object-keys-internal":60}],58:[function(require,module,exports){ +},{"./_enum-bug-keys":32,"./_object-keys-internal":59}],57:[function(require,module,exports){ exports.f = Object.getOwnPropertySymbols; -},{}],59:[function(require,module,exports){ +},{}],58:[function(require,module,exports){ // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) var has = require('./_has'); var toObject = require('./_to-object'); @@ -1251,7 +1197,7 @@ module.exports = Object.getPrototypeOf || function (O) { } return O instanceof Object ? ObjectProto : null; }; -},{"./_has":38,"./_shared-key":68,"./_to-object":75}],60:[function(require,module,exports){ +},{"./_has":37,"./_shared-key":67,"./_to-object":74}],59:[function(require,module,exports){ var has = require('./_has'); var toIObject = require('./_to-iobject'); var arrayIndexOf = require('./_array-includes')(false); @@ -1270,7 +1216,7 @@ module.exports = function (object, names) { return result; }; -},{"./_array-includes":26,"./_has":38,"./_shared-key":68,"./_to-iobject":73}],61:[function(require,module,exports){ +},{"./_array-includes":25,"./_has":37,"./_shared-key":67,"./_to-iobject":72}],60:[function(require,module,exports){ // 19.1.2.14 / 15.2.3.14 Object.keys(O) var $keys = require('./_object-keys-internal'); var enumBugKeys = require('./_enum-bug-keys'); @@ -1279,10 +1225,10 @@ module.exports = Object.keys || function keys(O) { return $keys(O, enumBugKeys); }; -},{"./_enum-bug-keys":33,"./_object-keys-internal":60}],62:[function(require,module,exports){ +},{"./_enum-bug-keys":32,"./_object-keys-internal":59}],61:[function(require,module,exports){ exports.f = {}.propertyIsEnumerable; -},{}],63:[function(require,module,exports){ +},{}],62:[function(require,module,exports){ var getKeys = require('./_object-keys'); var toIObject = require('./_to-iobject'); var isEnum = require('./_object-pie').f; @@ -1300,7 +1246,7 @@ module.exports = function (isEntries) { }; }; -},{"./_object-keys":61,"./_object-pie":62,"./_to-iobject":73}],64:[function(require,module,exports){ +},{"./_object-keys":60,"./_object-pie":61,"./_to-iobject":72}],63:[function(require,module,exports){ module.exports = function (bitmap, value) { return { enumerable: !(bitmap & 1), @@ -1310,10 +1256,10 @@ module.exports = function (bitmap, value) { }; }; -},{}],65:[function(require,module,exports){ +},{}],64:[function(require,module,exports){ module.exports = require('./_hide'); -},{"./_hide":39}],66:[function(require,module,exports){ +},{"./_hide":38}],65:[function(require,module,exports){ // Works with __proto__ only. Old v8 can't work with null proto objects. /* eslint-disable no-proto */ var isObject = require('./_is-object'); @@ -1340,7 +1286,7 @@ module.exports = { check: check }; -},{"./_an-object":25,"./_ctx":29,"./_is-object":44,"./_object-gopd":55}],67:[function(require,module,exports){ +},{"./_an-object":24,"./_ctx":28,"./_is-object":43,"./_object-gopd":54}],66:[function(require,module,exports){ var def = require('./_object-dp').f; var has = require('./_has'); var TAG = require('./_wks')('toStringTag'); @@ -1349,28 +1295,22 @@ module.exports = function (it, tag, stat) { if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); }; -},{"./_has":38,"./_object-dp":53,"./_wks":80}],68:[function(require,module,exports){ +},{"./_has":37,"./_object-dp":52,"./_wks":79}],67:[function(require,module,exports){ var shared = require('./_shared')('keys'); var uid = require('./_uid'); module.exports = function (key) { return shared[key] || (shared[key] = uid(key)); }; -},{"./_shared":69,"./_uid":77}],69:[function(require,module,exports){ -var core = require('./_core'); +},{"./_shared":68,"./_uid":76}],68:[function(require,module,exports){ var global = require('./_global'); var SHARED = '__core-js_shared__'; var store = global[SHARED] || (global[SHARED] = {}); +module.exports = function (key) { + return store[key] || (store[key] = {}); +}; -(module.exports = function (key, value) { - return store[key] || (store[key] = value !== undefined ? value : {}); -})('versions', []).push({ - version: core.version, - mode: require('./_library') ? 'pure' : 'global', - copyright: '© 2018 Denis Pushkarev (zloirock.ru)' -}); - -},{"./_core":28,"./_global":37,"./_library":49}],70:[function(require,module,exports){ +},{"./_global":36}],69:[function(require,module,exports){ var toInteger = require('./_to-integer'); var defined = require('./_defined'); // true -> String#at @@ -1389,7 +1329,7 @@ module.exports = function (TO_STRING) { }; }; -},{"./_defined":30,"./_to-integer":72}],71:[function(require,module,exports){ +},{"./_defined":29,"./_to-integer":71}],70:[function(require,module,exports){ var toInteger = require('./_to-integer'); var max = Math.max; var min = Math.min; @@ -1398,7 +1338,7 @@ module.exports = function (index, length) { return index < 0 ? max(index + length, 0) : min(index, length); }; -},{"./_to-integer":72}],72:[function(require,module,exports){ +},{"./_to-integer":71}],71:[function(require,module,exports){ // 7.1.4 ToInteger var ceil = Math.ceil; var floor = Math.floor; @@ -1406,7 +1346,7 @@ module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; -},{}],73:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ // to indexed object, toObject with fallback for non-array-like ES3 strings var IObject = require('./_iobject'); var defined = require('./_defined'); @@ -1414,7 +1354,7 @@ module.exports = function (it) { return IObject(defined(it)); }; -},{"./_defined":30,"./_iobject":42}],74:[function(require,module,exports){ +},{"./_defined":29,"./_iobject":41}],73:[function(require,module,exports){ // 7.1.15 ToLength var toInteger = require('./_to-integer'); var min = Math.min; @@ -1422,14 +1362,14 @@ module.exports = function (it) { return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 }; -},{"./_to-integer":72}],75:[function(require,module,exports){ +},{"./_to-integer":71}],74:[function(require,module,exports){ // 7.1.13 ToObject(argument) var defined = require('./_defined'); module.exports = function (it) { return Object(defined(it)); }; -},{"./_defined":30}],76:[function(require,module,exports){ +},{"./_defined":29}],75:[function(require,module,exports){ // 7.1.1 ToPrimitive(input [, PreferredType]) var isObject = require('./_is-object'); // instead of the ES6 spec version, we didn't implement @@toPrimitive case @@ -1443,14 +1383,14 @@ module.exports = function (it, S) { throw TypeError("Can't convert object to primitive value"); }; -},{"./_is-object":44}],77:[function(require,module,exports){ +},{"./_is-object":43}],76:[function(require,module,exports){ var id = 0; var px = Math.random(); module.exports = function (key) { return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); }; -},{}],78:[function(require,module,exports){ +},{}],77:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var LIBRARY = require('./_library'); @@ -1461,10 +1401,10 @@ module.exports = function (name) { if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) }); }; -},{"./_core":28,"./_global":37,"./_library":49,"./_object-dp":53,"./_wks-ext":79}],79:[function(require,module,exports){ +},{"./_core":27,"./_global":36,"./_library":48,"./_object-dp":52,"./_wks-ext":78}],78:[function(require,module,exports){ exports.f = require('./_wks'); -},{"./_wks":80}],80:[function(require,module,exports){ +},{"./_wks":79}],79:[function(require,module,exports){ var store = require('./_shared')('wks'); var uid = require('./_uid'); var Symbol = require('./_global').Symbol; @@ -1477,7 +1417,7 @@ var $exports = module.exports = function (name) { $exports.store = store; -},{"./_global":37,"./_shared":69,"./_uid":77}],81:[function(require,module,exports){ +},{"./_global":36,"./_shared":68,"./_uid":76}],80:[function(require,module,exports){ 'use strict'; var addToUnscopables = require('./_add-to-unscopables'); var step = require('./_iter-step'); @@ -1513,25 +1453,25 @@ addToUnscopables('keys'); addToUnscopables('values'); addToUnscopables('entries'); -},{"./_add-to-unscopables":24,"./_iter-define":46,"./_iter-step":47,"./_iterators":48,"./_to-iobject":73}],82:[function(require,module,exports){ +},{"./_add-to-unscopables":23,"./_iter-define":45,"./_iter-step":46,"./_iterators":47,"./_to-iobject":72}],81:[function(require,module,exports){ // 19.1.3.1 Object.assign(target, source) var $export = require('./_export'); $export($export.S + $export.F, 'Object', { assign: require('./_object-assign') }); -},{"./_export":35,"./_object-assign":51}],83:[function(require,module,exports){ +},{"./_export":34,"./_object-assign":50}],82:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) $export($export.S, 'Object', { create: require('./_object-create') }); -},{"./_export":35,"./_object-create":52}],84:[function(require,module,exports){ +},{"./_export":34,"./_object-create":51}],83:[function(require,module,exports){ // 19.1.3.19 Object.setPrototypeOf(O, proto) var $export = require('./_export'); $export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set }); -},{"./_export":35,"./_set-proto":66}],85:[function(require,module,exports){ +},{"./_export":34,"./_set-proto":65}],84:[function(require,module,exports){ -},{}],86:[function(require,module,exports){ +},{}],85:[function(require,module,exports){ 'use strict'; var $at = require('./_string-at')(true); @@ -1550,7 +1490,7 @@ require('./_iter-define')(String, 'String', function (iterated) { return { value: point, done: false }; }); -},{"./_iter-define":46,"./_string-at":70}],87:[function(require,module,exports){ +},{"./_iter-define":45,"./_string-at":69}],86:[function(require,module,exports){ 'use strict'; // ECMAScript 6 symbols shim var global = require('./_global'); @@ -1786,7 +1726,7 @@ setToStringTag(Math, 'Math', true); // 24.3.3 JSON[@@toStringTag] setToStringTag(global.JSON, 'JSON', true); -},{"./_an-object":25,"./_descriptors":31,"./_enum-keys":34,"./_export":35,"./_fails":36,"./_global":37,"./_has":38,"./_hide":39,"./_is-array":43,"./_is-object":44,"./_library":49,"./_meta":50,"./_object-create":52,"./_object-dp":53,"./_object-gopd":55,"./_object-gopn":57,"./_object-gopn-ext":56,"./_object-gops":58,"./_object-keys":61,"./_object-pie":62,"./_property-desc":64,"./_redefine":65,"./_set-to-string-tag":67,"./_shared":69,"./_to-iobject":73,"./_to-primitive":76,"./_uid":77,"./_wks":80,"./_wks-define":78,"./_wks-ext":79}],88:[function(require,module,exports){ +},{"./_an-object":24,"./_descriptors":30,"./_enum-keys":33,"./_export":34,"./_fails":35,"./_global":36,"./_has":37,"./_hide":38,"./_is-array":42,"./_is-object":43,"./_library":48,"./_meta":49,"./_object-create":51,"./_object-dp":52,"./_object-gopd":54,"./_object-gopn":56,"./_object-gopn-ext":55,"./_object-gops":57,"./_object-keys":60,"./_object-pie":61,"./_property-desc":63,"./_redefine":64,"./_set-to-string-tag":66,"./_shared":68,"./_to-iobject":72,"./_to-primitive":75,"./_uid":76,"./_wks":79,"./_wks-define":77,"./_wks-ext":78}],87:[function(require,module,exports){ // https://github.com/tc39/proposal-object-values-entries var $export = require('./_export'); var $entries = require('./_object-to-array')(true); @@ -1797,7 +1737,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":35,"./_object-to-array":63}],89:[function(require,module,exports){ +},{"./_export":34,"./_object-to-array":62}],88:[function(require,module,exports){ // https://github.com/tc39/proposal-object-values-entries var $export = require('./_export'); var $values = require('./_object-to-array')(false); @@ -1808,13 +1748,13 @@ $export($export.S, 'Object', { } }); -},{"./_export":35,"./_object-to-array":63}],90:[function(require,module,exports){ +},{"./_export":34,"./_object-to-array":62}],89:[function(require,module,exports){ require('./_wks-define')('asyncIterator'); -},{"./_wks-define":78}],91:[function(require,module,exports){ +},{"./_wks-define":77}],90:[function(require,module,exports){ require('./_wks-define')('observable'); -},{"./_wks-define":78}],92:[function(require,module,exports){ +},{"./_wks-define":77}],91:[function(require,module,exports){ require('./es6.array.iterator'); var global = require('./_global'); var hide = require('./_hide'); @@ -1835,8 +1775,57 @@ for (var i = 0; i < DOMIterables.length; i++) { Iterators[NAME] = Iterators.Array; } -},{"./_global":37,"./_hide":39,"./_iterators":48,"./_wks":80,"./es6.array.iterator":81}],93:[function(require,module,exports){ -(function (process){ +},{"./_global":36,"./_hide":38,"./_iterators":47,"./_wks":79,"./es6.array.iterator":80}],92:[function(require,module,exports){ +/*! + Copyright (c) 2016 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/ +/* global define */ + +(function () { + 'use strict'; + + var hasOwn = {}.hasOwnProperty; + + function classNames () { + var classes = []; + + for (var i = 0; i < arguments.length; i++) { + var arg = arguments[i]; + if (!arg) continue; + + var argType = typeof arg; + + if (argType === 'string' || argType === 'number') { + classes.push(arg); + } else if (Array.isArray(arg)) { + classes.push(classNames.apply(null, arg)); + } else if (argType === 'object') { + for (var key in arg) { + if (hasOwn.call(arg, key) && arg[key]) { + classes.push(key); + } + } + } + } + + return classes.join(' '); + } + + if (typeof module !== 'undefined' && module.exports) { + module.exports = classNames; + } else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) { + // register as 'classnames', consistent with npm package name + define('classnames', [], function () { + return classNames; + }); + } else { + window.classNames = classNames; + } +}()); + +},{}],93:[function(require,module,exports){ /** * Copyright (c) 2013-present, Facebook, Inc. * @@ -1852,7 +1841,7 @@ var _assign = require('object-assign'); var emptyObject = require('fbjs/lib/emptyObject'); var _invariant = require('fbjs/lib/invariant'); -if (process.env.NODE_ENV !== 'production') { +if ("production" !== 'production') { var warning = require('fbjs/lib/warning'); } @@ -1865,7 +1854,7 @@ function identity(fn) { } var ReactPropTypeLocationNames; -if (process.env.NODE_ENV !== 'production') { +if ("production" !== 'production') { ReactPropTypeLocationNames = { prop: 'prop', context: 'context', @@ -2183,7 +2172,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { } }, childContextTypes: function(Constructor, childContextTypes) { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { validateTypeDef(Constructor, childContextTypes, 'childContext'); } Constructor.childContextTypes = _assign( @@ -2193,7 +2182,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { ); }, contextTypes: function(Constructor, contextTypes) { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { validateTypeDef(Constructor, contextTypes, 'context'); } Constructor.contextTypes = _assign( @@ -2217,7 +2206,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { } }, propTypes: function(Constructor, propTypes) { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { validateTypeDef(Constructor, propTypes, 'prop'); } Constructor.propTypes = _assign({}, Constructor.propTypes, propTypes); @@ -2233,7 +2222,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { if (typeDef.hasOwnProperty(propName)) { // use a warning instead of an _invariant so components // don't show up in prod but only in __DEV__ - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( typeof typeDef[propName] === 'function', '%s: %s type `%s` is invalid; it must be a function, usually from ' + @@ -2281,11 +2270,11 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { */ function mixSpecIntoComponent(Constructor, spec) { if (!spec) { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { var typeofSpec = typeof spec; var isMixinValid = typeofSpec === 'object' && spec !== null; - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( isMixinValid, "%s: You're attempting to include a mixin that is either null " + @@ -2379,7 +2368,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { } } else { proto[name] = property; - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { // Add verbose displayName to the function, which helps when looking // at profiling tools. if (typeof property === 'function' && spec.displayName) { @@ -2514,7 +2503,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { */ function bindAutoBindMethod(component, method) { var boundMethod = method.bind(component); - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { boundMethod.__reactBoundContext = component; boundMethod.__reactBoundMethod = method; boundMethod.__reactBoundArguments = null; @@ -2535,7 +2524,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { // ignore the value of "this" that the user is trying to use, so // let's warn. if (newThis !== component && newThis !== null) { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( false, 'bind(): React component methods may only be bound to the ' + @@ -2544,7 +2533,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { ); } } else if (!args.length) { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( false, 'bind(): You are binding a component method to the component. ' + @@ -2611,7 +2600,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { * @final */ isMounted: function() { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( this.__didWarnIsMounted, '%s: isMounted is deprecated. Instead, make sure to clean up ' + @@ -2650,7 +2639,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { // This constructor gets overridden by mocks. The argument is used // by mocks to assert on what gets mounted. - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( this instanceof Constructor, 'Something is calling a React component directly. Use a factory or ' + @@ -2674,7 +2663,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { // getInitialState and componentWillMount methods for initialization. var initialState = this.getInitialState ? this.getInitialState() : null; - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { // We allow auto-mocks to proceed as if they're returning null. if ( initialState === undefined && @@ -2708,7 +2697,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { Constructor.defaultProps = Constructor.getDefaultProps(); } - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { // This is a tag to indicate that the use of these method names is ok, // since it's used with createClass. If it's not, then it's likely a // mistake so we'll warn you to use the static property, property @@ -2726,7 +2715,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { 'createClass(...): Class specification must implement a `render` method.' ); - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { warning( !Constructor.prototype.componentShouldUpdate, '%s has a method called ' + @@ -2764,9 +2753,7 @@ function factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) { module.exports = factory; -}).call(this,require('_process')) - -},{"_process":144,"fbjs/lib/emptyObject":127,"fbjs/lib/invariant":134,"fbjs/lib/warning":141,"object-assign":143}],94:[function(require,module,exports){ +},{"fbjs/lib/emptyObject":127,"fbjs/lib/invariant":134,"fbjs/lib/warning":141,"object-assign":143}],94:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { @@ -3472,7 +3459,6 @@ var size = void 0; module.exports = exports['default']; },{"./inDOM":117}],119:[function(require,module,exports){ -(function (process){ 'use strict'; /** @@ -3534,7 +3520,7 @@ var EventListener = { } }; } else { - if (process.env.NODE_ENV !== 'production') { + if ("production" !== 'production') { console.error('Attempted to listen to events during the capture phase on a ' + 'browser that does not support the capture phase. Your application ' + 'will not receive some events.'); } return { @@ -3547,9 +3533,7 @@ var EventListener = { }; module.exports = EventListener; -}).call(this,require('_process')) - -},{"./emptyFunction":126,"_process":144}],120:[function(require,module,exports){ +},{"./emptyFunction":126}],120:[function(require,module,exports){ /** * Copyright (c) 2013-present, Facebook, Inc. * @@ -3690,7 +3674,6 @@ function containsNode(outerNode, innerNode) { module.exports = containsNode; },{"./isTextNode":136}],124:[function(require,module,exports){ -(function (process){ 'use strict'; /** @@ -3718,13 +3701,13 @@ function toArray(obj) { // Some browsers builtin objects can report typeof 'function' (e.g. NodeList // in old versions of Safari). - !(!Array.isArray(obj) && (typeof obj === 'object' || typeof obj === 'function')) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Array-like object expected') : invariant(false) : void 0; + !(!Array.isArray(obj) && (typeof obj === 'object' || typeof obj === 'function')) ? "production" !== 'production' ? invariant(false, 'toArray: Array-like object expected') : invariant(false) : void 0; - !(typeof length === 'number') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Object needs a length property') : invariant(false) : void 0; + !(typeof length === 'number') ? "production" !== 'production' ? invariant(false, 'toArray: Object needs a length property') : invariant(false) : void 0; - !(length === 0 || length - 1 in obj) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Object should have keys for indices') : invariant(false) : void 0; + !(length === 0 || length - 1 in obj) ? "production" !== 'production' ? invariant(false, 'toArray: Object should have keys for indices') : invariant(false) : void 0; - !(typeof obj.callee !== 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Object can\'t be `arguments`. Use rest params ' + '(function(...args) {}) or Array.from() instead.') : invariant(false) : void 0; + !(typeof obj.callee !== 'function') ? "production" !== 'production' ? invariant(false, 'toArray: Object can\'t be `arguments`. Use rest params ' + '(function(...args) {}) or Array.from() instead.') : invariant(false) : void 0; // Old IE doesn't give collections access to hasOwnProperty. Assume inputs // without method will throw during the slice call and skip straight to the @@ -3815,10 +3798,7 @@ function createArrayFromMixed(obj) { } module.exports = createArrayFromMixed; -}).call(this,require('_process')) - -},{"./invariant":134,"_process":144}],125:[function(require,module,exports){ -(function (process){ +},{"./invariant":134}],125:[function(require,module,exports){ 'use strict'; /** @@ -3871,7 +3851,7 @@ function getNodeName(markup) { */ function createNodesFromMarkup(markup, handleScript) { var node = dummyNode; - !!!dummyNode ? process.env.NODE_ENV !== 'production' ? invariant(false, 'createNodesFromMarkup dummy not initialized') : invariant(false) : void 0; + !!!dummyNode ? "production" !== 'production' ? invariant(false, 'createNodesFromMarkup dummy not initialized') : invariant(false) : void 0; var nodeName = getNodeName(markup); var wrap = nodeName && getMarkupWrap(nodeName); @@ -3888,7 +3868,7 @@ function createNodesFromMarkup(markup, handleScript) { var scripts = node.getElementsByTagName('script'); if (scripts.length) { - !handleScript ? process.env.NODE_ENV !== 'production' ? invariant(false, 'createNodesFromMarkup(...): Unexpected