mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
2498 lines
92 KiB
CSS
Vendored
2498 lines
92 KiB
CSS
Vendored
var card =
|
|
/******/ (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__) {
|
|
|
|
/* WEBPACK VAR INJECTION */(function(global) {var Card, QJ, extend, payment,
|
|
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
|
|
|
__webpack_require__(1);
|
|
|
|
QJ = __webpack_require__(5);
|
|
|
|
payment = __webpack_require__(6);
|
|
|
|
extend = __webpack_require__(7);
|
|
|
|
Card = (function() {
|
|
var bindVal;
|
|
|
|
Card.prototype.initializedDataAttr = "data-jp-card-initialized";
|
|
|
|
Card.prototype.cardTemplate = '' + '<div class="jp-card-container">' + '<div class="jp-card">' + '<div class="jp-card-front">' + '<div class="jp-card-logo jp-card-elo">' + '<div class="e">e</div>' + '<div class="l">l</div>' + '<div class="o">o</div>' + '</div>' + '<div class="jp-card-logo jp-card-visa">visa</div>' + '<div class="jp-card-logo jp-card-mastercard">MasterCard</div>' + '<div class="jp-card-logo jp-card-maestro">Maestro</div>' + '<div class="jp-card-logo jp-card-amex"></div>' + '<div class="jp-card-logo jp-card-discover">discover</div>' + '<div class="jp-card-logo jp-card-dankort"><div class="dk"><div class="d"></div><div class="k"></div></div></div>' + '<div class="jp-card-lower">' + '<div class="jp-card-shiny"></div>' + '<div class="jp-card-cvc jp-card-display">{{cvc}}</div>' + '<div class="jp-card-number jp-card-display">{{number}}</div>' + '<div class="jp-card-name jp-card-display">{{name}}</div>' + '<div class="jp-card-expiry jp-card-display" data-before="{{monthYear}}" data-after="{{validDate}}">{{expiry}}</div>' + '</div>' + '</div>' + '<div class="jp-card-back">' + '<div class="jp-card-bar"></div>' + '<div class="jp-card-cvc jp-card-display">{{cvc}}</div>' + '<div class="jp-card-shiny"></div>' + '</div>' + '</div>' + '</div>';
|
|
|
|
Card.prototype.template = function(tpl, data) {
|
|
return tpl.replace(/\{\{(.*?)\}\}/g, function(match, key, str) {
|
|
return data[key];
|
|
});
|
|
};
|
|
|
|
Card.prototype.cardTypes = ['jp-card-amex', 'jp-card-dankort', 'jp-card-dinersclub', 'jp-card-discover', 'jp-card-jcb', 'jp-card-laser', 'jp-card-maestro', 'jp-card-mastercard', 'jp-card-unionpay', 'jp-card-visa', 'jp-card-visaelectron', 'jp-card-elo'];
|
|
|
|
Card.prototype.defaults = {
|
|
formatting: true,
|
|
formSelectors: {
|
|
numberInput: 'input[name="number"]',
|
|
expiryInput: 'input[name="expiry"]',
|
|
cvcInput: 'input[name="cvc"]',
|
|
nameInput: 'input[name="name"]'
|
|
},
|
|
cardSelectors: {
|
|
cardContainer: '.jp-card-container',
|
|
card: '.jp-card',
|
|
numberDisplay: '.jp-card-number',
|
|
expiryDisplay: '.jp-card-expiry',
|
|
cvcDisplay: '.jp-card-cvc',
|
|
nameDisplay: '.jp-card-name'
|
|
},
|
|
messages: {
|
|
validDate: 'valid\nthru',
|
|
monthYear: 'month/year'
|
|
},
|
|
placeholders: {
|
|
number: '•••• •••• •••• ••••',
|
|
cvc: '•••',
|
|
expiry: '••/••',
|
|
name: 'Full Name'
|
|
},
|
|
masks: {
|
|
cardNumber: false
|
|
},
|
|
classes: {
|
|
valid: 'jp-card-valid',
|
|
invalid: 'jp-card-invalid'
|
|
},
|
|
debug: false
|
|
};
|
|
|
|
function Card(opts) {
|
|
this.maskCardNumber = __bind(this.maskCardNumber, this);
|
|
var toInitialize;
|
|
this.options = extend(true, this.defaults, opts);
|
|
if (!this.options.form) {
|
|
console.log("Please provide a form");
|
|
return;
|
|
}
|
|
this.$el = QJ(this.options.form);
|
|
if (!this.options.container) {
|
|
console.log("Please provide a container");
|
|
return;
|
|
}
|
|
this.$container = QJ(this.options.container);
|
|
toInitialize = QJ.isDOMElement(this.$container) ? this.$container : this.$container[0];
|
|
if (toInitialize.getAttribute(this.initializedDataAttr)) {
|
|
return;
|
|
}
|
|
toInitialize.setAttribute(this.initializedDataAttr, true);
|
|
this.render();
|
|
this.attachHandlers();
|
|
this.handleInitialPlaceholders();
|
|
}
|
|
|
|
Card.prototype.render = function() {
|
|
var $cardContainer, baseWidth, name, obj, selector, ua, _ref, _ref1;
|
|
QJ.append(this.$container, this.template(this.cardTemplate, extend({}, this.options.messages, this.options.placeholders)));
|
|
_ref = this.options.cardSelectors;
|
|
for (name in _ref) {
|
|
selector = _ref[name];
|
|
this["$" + name] = QJ.find(this.$container, selector);
|
|
}
|
|
_ref1 = this.options.formSelectors;
|
|
for (name in _ref1) {
|
|
selector = _ref1[name];
|
|
selector = this.options[name] ? this.options[name] : selector;
|
|
obj = QJ.find(this.$el, selector);
|
|
if (!obj.length && this.options.debug) {
|
|
console.error("Card can't find a " + name + " in your form.");
|
|
}
|
|
this["$" + name] = obj;
|
|
}
|
|
if (this.options.formatting) {
|
|
Payment.formatCardNumber(this.$numberInput);
|
|
Payment.formatCardCVC(this.$cvcInput);
|
|
Payment.formatCardExpiry(this.$expiryInput);
|
|
}
|
|
if (this.options.width) {
|
|
$cardContainer = QJ(this.options.cardSelectors.cardContainer)[0];
|
|
baseWidth = parseInt($cardContainer.clientWidth || window.getComputedStyle($cardContainer).width);
|
|
$cardContainer.style.transform = "scale(" + (this.options.width / baseWidth) + ")";
|
|
}
|
|
if (typeof navigator !== "undefined" && navigator !== null ? navigator.userAgent : void 0) {
|
|
ua = navigator.userAgent.toLowerCase();
|
|
if (ua.indexOf('safari') !== -1 && ua.indexOf('chrome') === -1) {
|
|
QJ.addClass(this.$card, 'jp-card-safari');
|
|
}
|
|
}
|
|
if (/MSIE 10\./i.test(navigator.userAgent)) {
|
|
QJ.addClass(this.$card, 'jp-card-ie-10');
|
|
}
|
|
if (/rv:11.0/i.test(navigator.userAgent)) {
|
|
return QJ.addClass(this.$card, 'jp-card-ie-11');
|
|
}
|
|
};
|
|
|
|
Card.prototype.attachHandlers = function() {
|
|
var expiryFilters, numberInputFilters;
|
|
numberInputFilters = [this.validToggler('cardNumber')];
|
|
if (this.options.masks.cardNumber) {
|
|
numberInputFilters.push(this.maskCardNumber);
|
|
}
|
|
bindVal(this.$numberInput, this.$numberDisplay, {
|
|
fill: false,
|
|
filters: numberInputFilters
|
|
});
|
|
QJ.on(this.$numberInput, 'payment.cardType', this.handle('setCardType'));
|
|
expiryFilters = [
|
|
function(val) {
|
|
return val.replace(/(\s+)/g, '');
|
|
}
|
|
];
|
|
expiryFilters.push(this.validToggler('cardExpiry'));
|
|
bindVal(this.$expiryInput, this.$expiryDisplay, {
|
|
join: function(text) {
|
|
if (text[0].length === 2 || text[1]) {
|
|
return "/";
|
|
} else {
|
|
return "";
|
|
}
|
|
},
|
|
filters: expiryFilters
|
|
});
|
|
bindVal(this.$cvcInput, this.$cvcDisplay, {
|
|
filters: this.validToggler('cardCVC')
|
|
});
|
|
QJ.on(this.$cvcInput, 'focus', this.handle('flipCard'));
|
|
QJ.on(this.$cvcInput, 'blur', this.handle('unflipCard'));
|
|
return bindVal(this.$nameInput, this.$nameDisplay, {
|
|
fill: false,
|
|
filters: this.validToggler('cardHolderName'),
|
|
join: ' '
|
|
});
|
|
};
|
|
|
|
Card.prototype.handleInitialPlaceholders = function() {
|
|
var el, name, selector, _ref, _results;
|
|
_ref = this.options.formSelectors;
|
|
_results = [];
|
|
for (name in _ref) {
|
|
selector = _ref[name];
|
|
el = this["$" + name];
|
|
if (QJ.val(el)) {
|
|
QJ.trigger(el, 'paste');
|
|
_results.push(setTimeout(function() {
|
|
return QJ.trigger(el, 'keyup');
|
|
}));
|
|
} else {
|
|
_results.push(void 0);
|
|
}
|
|
}
|
|
return _results;
|
|
};
|
|
|
|
Card.prototype.handle = function(fn) {
|
|
return (function(_this) {
|
|
return function(e) {
|
|
var args;
|
|
args = Array.prototype.slice.call(arguments);
|
|
args.unshift(e.target);
|
|
return _this.handlers[fn].apply(_this, args);
|
|
};
|
|
})(this);
|
|
};
|
|
|
|
Card.prototype.validToggler = function(validatorName) {
|
|
var isValid;
|
|
if (validatorName === "cardExpiry") {
|
|
isValid = function(val) {
|
|
var objVal;
|
|
objVal = Payment.fns.cardExpiryVal(val);
|
|
return Payment.fns.validateCardExpiry(objVal.month, objVal.year);
|
|
};
|
|
} else if (validatorName === "cardCVC") {
|
|
isValid = (function(_this) {
|
|
return function(val) {
|
|
return Payment.fns.validateCardCVC(val, _this.cardType);
|
|
};
|
|
})(this);
|
|
} else if (validatorName === "cardNumber") {
|
|
isValid = function(val) {
|
|
return Payment.fns.validateCardNumber(val);
|
|
};
|
|
} else if (validatorName === "cardHolderName") {
|
|
isValid = function(val) {
|
|
return val !== "";
|
|
};
|
|
}
|
|
return (function(_this) {
|
|
return function(val, $in, $out) {
|
|
var result;
|
|
result = isValid(val);
|
|
_this.toggleValidClass($in, result);
|
|
_this.toggleValidClass($out, result);
|
|
return val;
|
|
};
|
|
})(this);
|
|
};
|
|
|
|
Card.prototype.toggleValidClass = function(el, test) {
|
|
QJ.toggleClass(el, this.options.classes.valid, test);
|
|
return QJ.toggleClass(el, this.options.classes.invalid, !test);
|
|
};
|
|
|
|
Card.prototype.maskCardNumber = function(val, el, out) {
|
|
var mask, numbers;
|
|
mask = this.options.masks.cardNumber;
|
|
numbers = val.split(' ');
|
|
if (numbers.length >= 3) {
|
|
numbers.forEach(function(item, idx) {
|
|
if (idx !== numbers.length - 1) {
|
|
return numbers[idx] = numbers[idx].replace(/\d/g, mask);
|
|
}
|
|
});
|
|
return numbers.join(' ');
|
|
} else {
|
|
return val.replace(/\d/g, mask);
|
|
}
|
|
};
|
|
|
|
Card.prototype.handlers = {
|
|
setCardType: function($el, e) {
|
|
var cardType;
|
|
cardType = e.data;
|
|
if (!QJ.hasClass(this.$card, cardType)) {
|
|
QJ.removeClass(this.$card, 'jp-card-unknown');
|
|
QJ.removeClass(this.$card, this.cardTypes.join(' '));
|
|
QJ.addClass(this.$card, "jp-card-" + cardType);
|
|
QJ.toggleClass(this.$card, 'jp-card-identified', cardType !== 'unknown');
|
|
return this.cardType = cardType;
|
|
}
|
|
},
|
|
flipCard: function() {
|
|
return QJ.addClass(this.$card, 'jp-card-flipped');
|
|
},
|
|
unflipCard: function() {
|
|
return QJ.removeClass(this.$card, 'jp-card-flipped');
|
|
}
|
|
};
|
|
|
|
bindVal = function(el, out, opts) {
|
|
var joiner, o, outDefaults;
|
|
if (opts == null) {
|
|
opts = {};
|
|
}
|
|
opts.fill = opts.fill || false;
|
|
opts.filters = opts.filters || [];
|
|
if (!(opts.filters instanceof Array)) {
|
|
opts.filters = [opts.filters];
|
|
}
|
|
opts.join = opts.join || "";
|
|
if (!(typeof opts.join === "function")) {
|
|
joiner = opts.join;
|
|
opts.join = function() {
|
|
return joiner;
|
|
};
|
|
}
|
|
outDefaults = (function() {
|
|
var _i, _len, _results;
|
|
_results = [];
|
|
for (_i = 0, _len = out.length; _i < _len; _i++) {
|
|
o = out[_i];
|
|
_results.push(o.textContent);
|
|
}
|
|
return _results;
|
|
})();
|
|
QJ.on(el, 'focus', function() {
|
|
return QJ.addClass(out, 'jp-card-focused');
|
|
});
|
|
QJ.on(el, 'blur', function() {
|
|
return QJ.removeClass(out, 'jp-card-focused');
|
|
});
|
|
QJ.on(el, 'keyup change paste', function(e) {
|
|
var elem, filter, i, join, outEl, outVal, val, _i, _j, _len, _len1, _ref, _results;
|
|
val = (function() {
|
|
var _i, _len, _results;
|
|
_results = [];
|
|
for (_i = 0, _len = el.length; _i < _len; _i++) {
|
|
elem = el[_i];
|
|
_results.push(QJ.val(elem));
|
|
}
|
|
return _results;
|
|
})();
|
|
join = opts.join(val);
|
|
val = val.join(join);
|
|
if (val === join) {
|
|
val = "";
|
|
}
|
|
_ref = opts.filters;
|
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
|
filter = _ref[_i];
|
|
val = filter(val, el, out);
|
|
}
|
|
_results = [];
|
|
for (i = _j = 0, _len1 = out.length; _j < _len1; i = ++_j) {
|
|
outEl = out[i];
|
|
if (opts.fill) {
|
|
outVal = val + outDefaults[i].substring(val.length);
|
|
} else {
|
|
outVal = val || outDefaults[i];
|
|
}
|
|
_results.push(outEl.textContent = outVal);
|
|
}
|
|
return _results;
|
|
});
|
|
return el;
|
|
};
|
|
|
|
return Card;
|
|
|
|
})();
|
|
|
|
module.exports = Card;
|
|
|
|
global.Card = Card;
|
|
|
|
/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
|
|
|
|
/***/ },
|
|
/* 1 */
|
|
/***/ 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__(2);
|
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
// add the styles to the DOM
|
|
var update = __webpack_require__(4)(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!./card.scss", function() {
|
|
var newContent = require("!!./../../node_modules/css-loader/index.js!./../../node_modules/sass-loader/index.js!./card.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(); });
|
|
}
|
|
|
|
/***/ },
|
|
/* 2 */
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
exports = module.exports = __webpack_require__(3)();
|
|
// imports
|
|
|
|
|
|
// module
|
|
exports.push([module.id, ".jp-card.jp-card-safari.jp-card-identified .jp-card-front:before, .jp-card.jp-card-safari.jp-card-identified .jp-card-back:before {\n background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);\n background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%); }\n\n.jp-card.jp-card-ie-10.jp-card-flipped, .jp-card.jp-card-ie-11.jp-card-flipped {\n -webkit-transform: 0deg;\n -moz-transform: 0deg;\n -ms-transform: 0deg;\n -o-transform: 0deg;\n transform: 0deg; }\n .jp-card.jp-card-ie-10.jp-card-flipped .jp-card-front, .jp-card.jp-card-ie-11.jp-card-flipped .jp-card-front {\n -webkit-transform: rotateY(0deg);\n -moz-transform: rotateY(0deg);\n -ms-transform: rotateY(0deg);\n -o-transform: rotateY(0deg);\n transform: rotateY(0deg); }\n .jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back, .jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back {\n -webkit-transform: rotateY(0deg);\n -moz-transform: rotateY(0deg);\n -ms-transform: rotateY(0deg);\n -o-transform: rotateY(0deg);\n transform: rotateY(0deg); }\n .jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back:after, .jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back:after {\n left: 18%; }\n .jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-cvc, .jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-cvc {\n -webkit-transform: rotateY(180deg);\n -moz-transform: rotateY(180deg);\n -ms-transform: rotateY(180deg);\n -o-transform: rotateY(180deg);\n transform: rotateY(180deg);\n left: 5%; }\n .jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-shiny, .jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-shiny {\n left: 84%; }\n .jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-shiny:after, .jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-shiny:after {\n left: -480%;\n -webkit-transform: rotateY(180deg);\n -moz-transform: rotateY(180deg);\n -ms-transform: rotateY(180deg);\n -o-transform: rotateY(180deg);\n transform: rotateY(180deg); }\n\n.jp-card.jp-card-ie-10.jp-card-amex .jp-card-back, .jp-card.jp-card-ie-11.jp-card-amex .jp-card-back {\n display: none; }\n\n.jp-card-logo {\n height: 36px;\n width: 60px;\n font-style: italic; }\n .jp-card-logo, .jp-card-logo:before, .jp-card-logo:after {\n box-sizing: border-box; }\n\n.jp-card-logo.jp-card-amex {\n text-transform: uppercase;\n font-size: 4px;\n font-weight: bold;\n color: white;\n background-image: repeating-radial-gradient(circle at center, #FFF 1px, #999 2px);\n background-image: repeating-radial-gradient(circle at center, #FFF 1px, #999 2px);\n border: 1px solid #EEE; }\n .jp-card-logo.jp-card-amex:before, .jp-card-logo.jp-card-amex:after {\n width: 28px;\n display: block;\n position: absolute;\n left: 16px; }\n .jp-card-logo.jp-card-amex:before {\n height: 28px;\n content: \"american\";\n top: 3px;\n text-align: left;\n padding-left: 2px;\n padding-top: 11px;\n background: #267AC3; }\n .jp-card-logo.jp-card-amex:after {\n content: \"express\";\n bottom: 11px;\n text-align: right;\n padding-right: 2px; }\n\n.jp-card.jp-card-amex.jp-card-flipped {\n -webkit-transform: none;\n -moz-transform: none;\n -ms-transform: none;\n -o-transform: none;\n transform: none; }\n\n.jp-card.jp-card-amex.jp-card-identified .jp-card-front:before, .jp-card.jp-card-amex.jp-card-identified .jp-card-back:before {\n background-color: #108168; }\n\n.jp-card.jp-card-amex.jp-card-identified .jp-card-front .jp-card-logo.jp-card-amex {\n opacity: 1; }\n\n.jp-card.jp-card-amex.jp-card-identified .jp-card-front .jp-card-cvc {\n visibility: visible; }\n\n.jp-card.jp-card-amex.jp-card-identified .jp-card-front:after {\n opacity: 1; }\n\n.jp-card-logo.jp-card-discover {\n background: #FF6600;\n color: #111;\n text-transform: uppercase;\n font-style: normal;\n font-weight: bold;\n font-size: 10px;\n text-align: center;\n overflow: hidden;\n z-index: 1;\n padding-top: 9px;\n letter-spacing: .03em;\n border: 1px solid #EEE; }\n .jp-card-logo.jp-card-discover:before, .jp-card-logo.jp-card-discover:after {\n content: \" \";\n display: block;\n position: absolute; }\n .jp-card-logo.jp-card-discover:before {\n background: white;\n width: 200px;\n height: 200px;\n border-radius: 200px;\n bottom: -5%;\n right: -80%;\n z-index: -1; }\n .jp-card-logo.jp-card-discover:after {\n width: 8px;\n height: 8px;\n border-radius: 4px;\n top: 10px;\n left: 27px;\n background-color: #FF6600;\n background-image: -webkit-radial-gradient(#FF6600, #fff);\n background-image: radial-gradient( #FF6600, #fff);\n content: \"network\";\n font-size: 4px;\n line-height: 24px;\n text-indent: -7px; }\n\n.jp-card .jp-card-front .jp-card-logo.jp-card-discover {\n right: 12%;\n top: 18%; }\n\n.jp-card.jp-card-discover.jp-card-identified .jp-card-front:before, .jp-card.jp-card-discover.jp-card-identified .jp-card-back:before {\n background-color: #86B8CF; }\n\n.jp-card.jp-card-discover.jp-card-identified .jp-card-logo.jp-card-discover {\n opacity: 1; }\n\n.jp-card.jp-card-discover.jp-card-identified .jp-card-front:after {\n -webkit-transition: 400ms;\n -moz-transition: 400ms;\n transition: 400ms;\n content: \" \";\n display: block;\n background-color: #FF6600;\n background-image: -webkit-linear-gradient(#FF6600, #ffa366, #FF6600);\n background-image: linear-gradient(#FF6600, #ffa366, #FF6600);\n height: 50px;\n width: 50px;\n border-radius: 25px;\n position: absolute;\n left: 100%;\n top: 15%;\n margin-left: -25px;\n box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.5); }\n\n.jp-card-logo.jp-card-visa {\n background: white;\n text-transform: uppercase;\n color: #1A1876;\n text-align: center;\n font-weight: bold;\n font-size: 15px;\n line-height: 18px; }\n .jp-card-logo.jp-card-visa:before, .jp-card-logo.jp-card-visa:after {\n content: \" \";\n display: block;\n width: 100%;\n height: 25%; }\n .jp-card-logo.jp-card-visa:before {\n background: #1A1876; }\n .jp-card-logo.jp-card-visa:after {\n background: #E79800; }\n\n.jp-card.jp-card-visa.jp-card-identified .jp-card-front:before, .jp-card.jp-card-visa.jp-card-identified .jp-card-back:before {\n background-color: #191278; }\n\n.jp-card.jp-card-visa.jp-card-identified .jp-card-logo.jp-card-visa {\n opacity: 1; }\n\n.jp-card-logo.jp-card-mastercard {\n color: white;\n font-weight: bold;\n text-align: center;\n font-size: 9px;\n line-height: 36px;\n z-index: 1;\n text-shadow: 1px 1px rgba(0, 0, 0, 0.6); }\n .jp-card-logo.jp-card-mastercard:before, .jp-card-logo.jp-card-mastercard:after {\n content: \" \";\n display: block;\n width: 36px;\n top: 0;\n position: absolute;\n height: 36px;\n border-radius: 18px; }\n .jp-card-logo.jp-card-mastercard:before {\n left: 0;\n background: #FF0000;\n z-index: -1; }\n .jp-card-logo.jp-card-mastercard:after {\n right: 0;\n background: #FFAB00;\n z-index: -2; }\n\n.jp-card.jp-card-mastercard.jp-card-identified .jp-card-front .jp-card-logo.jp-card-mastercard, .jp-card.jp-card-mastercard.jp-card-identified .jp-card-back .jp-card-logo.jp-card-mastercard {\n box-shadow: none; }\n\n.jp-card.jp-card-mastercard.jp-card-identified .jp-card-front:before, .jp-card.jp-card-mastercard.jp-card-identified .jp-card-back:before {\n background-color: #0061A8; }\n\n.jp-card.jp-card-mastercard.jp-card-identified .jp-card-logo.jp-card-mastercard {\n opacity: 1; }\n\n.jp-card-logo.jp-card-maestro {\n color: white;\n font-weight: bold;\n text-align: center;\n font-size: 14px;\n line-height: 36px;\n z-index: 1;\n text-shadow: 1px 1px rgba(0, 0, 0, 0.6); }\n .jp-card-logo.jp-card-maestro:before, .jp-card-logo.jp-card-maestro:after {\n content: \" \";\n display: block;\n width: 36px;\n top: 0;\n position: absolute;\n height: 36px;\n border-radius: 18px; }\n .jp-card-logo.jp-card-maestro:before {\n left: 0;\n background: #0064CB;\n z-index: -1; }\n .jp-card-logo.jp-card-maestro:after {\n right: 0;\n background: #CC0000;\n z-index: -2; }\n\n.jp-card.jp-card-maestro.jp-card-identified .jp-card-front .jp-card-logo.jp-card-maestro, .jp-card.jp-card-maestro.jp-card-identified .jp-card-back .jp-card-logo.jp-card-maestro {\n box-shadow: none; }\n\n.jp-card.jp-card-maestro.jp-card-identified .jp-card-front:before, .jp-card.jp-card-maestro.jp-card-identified .jp-card-back:before {\n background-color: #0B2C5F; }\n\n.jp-card.jp-card-maestro.jp-card-identified .jp-card-logo.jp-card-maestro {\n opacity: 1; }\n\n.jp-card-logo.jp-card-dankort {\n width: 60px;\n height: 36px;\n padding: 3px;\n border-radius: 8px;\n border: #000000 1px solid;\n background-color: #FFFFFF; }\n .jp-card-logo.jp-card-dankort .dk {\n position: relative;\n width: 100%;\n height: 100%;\n overflow: hidden; }\n .jp-card-logo.jp-card-dankort .dk:before {\n background-color: #ED1C24;\n content: '';\n position: absolute;\n width: 100%;\n height: 100%;\n display: block;\n border-radius: 6px; }\n .jp-card-logo.jp-card-dankort .dk:after {\n content: '';\n position: absolute;\n top: 50%;\n margin-top: -7.7px;\n right: 0;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 7px 10px 0;\n border-color: transparent #ED1C24 transparent transparent;\n z-index: 1; }\n .jp-card-logo.jp-card-dankort .d, .jp-card-logo.jp-card-dankort .k {\n position: absolute;\n top: 50%;\n width: 50%;\n display: block;\n height: 15.4px;\n margin-top: -7.7px;\n background: white; }\n .jp-card-logo.jp-card-dankort .d {\n left: 0;\n border-radius: 0 8px 10px 0; }\n .jp-card-logo.jp-card-dankort .d:before {\n content: '';\n position: absolute;\n top: 50%;\n left: 50%;\n display: block;\n background: #ED1C24;\n border-radius: 2px 4px 6px 0px;\n height: 5px;\n width: 7px;\n margin: -3px 0 0 -4px; }\n .jp-card-logo.jp-card-dankort .k {\n right: 0; }\n .jp-card-logo.jp-card-dankort .k:before, .jp-card-logo.jp-card-dankort .k:after {\n content: '';\n position: absolute;\n right: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n margin-right: -1px; }\n .jp-card-logo.jp-card-dankort .k:before {\n top: 0;\n border-width: 8px 5px 0 0;\n border-color: #ED1C24 transparent transparent transparent; }\n .jp-card-logo.jp-card-dankort .k:after {\n bottom: 0;\n border-width: 0 5px 8px 0;\n border-color: transparent transparent #ED1C24 transparent; }\n\n.jp-card.jp-card-dankort.jp-card-identified .jp-card-front:before, .jp-card.jp-card-dankort.jp-card-identified .jp-card-back:before {\n background-color: #0055C7; }\n\n.jp-card.jp-card-dankort.jp-card-identified .jp-card-logo.jp-card-dankort {\n opacity: 1; }\n\n.jp-card-logo.jp-card-elo {\n height: 50px;\n width: 50px;\n border-radius: 100%;\n background: black;\n color: white;\n text-align: center;\n text-transform: lowercase;\n font-size: 21px;\n font-style: normal;\n letter-spacing: 1px;\n font-weight: bold;\n padding-top: 13px; }\n .jp-card-logo.jp-card-elo .e, .jp-card-logo.jp-card-elo .l, .jp-card-logo.jp-card-elo .o {\n display: inline-block;\n position: relative; }\n .jp-card-logo.jp-card-elo .e {\n -webkit-transform: rotate(-15deg);\n -moz-transform: rotate(-15deg);\n -ms-transform: rotate(-15deg);\n -o-transform: rotate(-15deg);\n transform: rotate(-15deg); }\n .jp-card-logo.jp-card-elo .o {\n position: relative;\n display: inline-block;\n width: 12px;\n height: 12px;\n right: 0;\n top: 7px;\n border-radius: 100%;\n background-image: -webkit-linear-gradient( yellow 50%, red 50%);\n background-image: linear-gradient( yellow 50%, red 50%);\n -webkit-transform: rotate(40deg);\n -moz-transform: rotate(40deg);\n -ms-transform: rotate(40deg);\n -o-transform: rotate(40deg);\n transform: rotate(40deg);\n text-indent: -9999px; }\n .jp-card-logo.jp-card-elo .o:before {\n content: \"\";\n position: absolute;\n width: 49%;\n height: 49%;\n background: black;\n border-radius: 100%;\n text-indent: -99999px;\n top: 25%;\n left: 25%; }\n\n.jp-card.jp-card-elo.jp-card-identified .jp-card-front:before, .jp-card.jp-card-elo.jp-card-identified .jp-card-back:before {\n background-color: #6F6969; }\n\n.jp-card.jp-card-elo.jp-card-identified .jp-card-logo.jp-card-elo {\n opacity: 1; }\n\n.jp-card-container {\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n width: 350px;\n max-width: 100%;\n height: 200px;\n margin: auto;\n z-index: 1;\n position: relative; }\n\n.jp-card {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n line-height: 1;\n position: relative;\n width: 100%;\n height: 100%;\n min-width: 315px;\n border-radius: 10px;\n -webkit-transform-style: preserve-3d;\n -moz-transform-style: preserve-3d;\n -ms-transform-style: preserve-3d;\n -o-transform-style: preserve-3d;\n transform-style: preserve-3d;\n -webkit-transition: all 400ms linear;\n -moz-transition: all 400ms linear;\n transition: all 400ms linear; }\n .jp-card > *, .jp-card > *:before, .jp-card > *:after {\n -moz-box-sizing: border-box;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-family: inherit; }\n .jp-card.jp-card-flipped {\n -webkit-transform: rotateY(180deg);\n -moz-transform: rotateY(180deg);\n -ms-transform: rotateY(180deg);\n -o-transform: rotateY(180deg);\n transform: rotateY(180deg);\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden; }\n .jp-card .jp-card-front, .jp-card .jp-card-back {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-transform-style: preserve-3d;\n -moz-transform-style: preserve-3d;\n -ms-transform-style: preserve-3d;\n -o-transform-style: preserve-3d;\n transform-style: preserve-3d;\n -webkit-transition: all 400ms linear;\n -moz-transition: all 400ms linear;\n transition: all 400ms linear;\n width: 100%;\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n overflow: hidden;\n border-radius: 10px;\n background: #DDD; }\n .jp-card .jp-card-front:before, .jp-card .jp-card-back:before {\n content: \" \";\n display: block;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n opacity: 0;\n border-radius: 10px;\n -webkit-transition: all 400ms ease;\n -moz-transition: all 400ms ease;\n transition: all 400ms ease; }\n .jp-card .jp-card-front:after, .jp-card .jp-card-back:after {\n content: \" \";\n display: block; }\n .jp-card .jp-card-front .jp-card-display, .jp-card .jp-card-back .jp-card-display {\n color: white;\n font-weight: normal;\n opacity: 0.5;\n -webkit-transition: opacity 400ms linear;\n -moz-transition: opacity 400ms linear;\n transition: opacity 400ms linear; }\n .jp-card .jp-card-front .jp-card-display.jp-card-focused, .jp-card .jp-card-back .jp-card-display.jp-card-focused {\n opacity: 1;\n font-weight: 700; }\n .jp-card .jp-card-front .jp-card-cvc, .jp-card .jp-card-back .jp-card-cvc {\n font-family: \"Bitstream Vera Sans Mono\", Consolas, Courier, monospace;\n font-size: 14px; }\n .jp-card .jp-card-front .jp-card-shiny, .jp-card .jp-card-back .jp-card-shiny {\n width: 50px;\n height: 35px;\n border-radius: 5px;\n background: #CCC;\n position: relative; }\n .jp-card .jp-card-front .jp-card-shiny:before, .jp-card .jp-card-back .jp-card-shiny:before {\n content: \" \";\n display: block;\n width: 70%;\n height: 60%;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n background: #d9d9d9;\n position: absolute;\n top: 20%; }\n .jp-card .jp-card-front .jp-card-logo {\n position: absolute;\n opacity: 0;\n right: 5%;\n top: 8%;\n -webkit-transition: 400ms;\n -moz-transition: 400ms;\n transition: 400ms; }\n .jp-card .jp-card-front .jp-card-lower {\n width: 80%;\n position: absolute;\n left: 10%;\n bottom: 30px; }\n @media only screen and (max-width: 480px) {\n .jp-card .jp-card-front .jp-card-lower {\n width: 90%;\n left: 5%; } }\n .jp-card .jp-card-front .jp-card-lower .jp-card-cvc {\n visibility: hidden;\n float: right;\n position: relative;\n bottom: 5px; }\n .jp-card .jp-card-front .jp-card-lower .jp-card-number {\n font-family: \"Bitstream Vera Sans Mono\", Consolas, Courier, monospace;\n font-size: 24px;\n clear: both;\n margin-bottom: 30px; }\n .jp-card .jp-card-front .jp-card-lower .jp-card-expiry {\n font-family: \"Bitstream Vera Sans Mono\", Consolas, Courier, monospace;\n letter-spacing: 0em;\n position: relative;\n float: right;\n width: 25%; }\n .jp-card .jp-card-front .jp-card-lower .jp-card-expiry:before, .jp-card .jp-card-front .jp-card-lower .jp-card-expiry:after {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-weight: bold;\n font-size: 7px;\n white-space: pre;\n display: block;\n opacity: .5; }\n .jp-card .jp-card-front .jp-card-lower .jp-card-expiry:before {\n content: attr(data-before);\n margin-bottom: 2px;\n font-size: 7px;\n text-transform: uppercase; }\n .jp-card .jp-card-front .jp-card-lower .jp-card-expiry:after {\n position: absolute;\n content: attr(data-after);\n text-align: right;\n right: 100%;\n margin-right: 5px;\n margin-top: 2px;\n bottom: 0; }\n .jp-card .jp-card-front .jp-card-lower .jp-card-name {\n text-transform: uppercase;\n font-family: \"Bitstream Vera Sans Mono\", Consolas, Courier, monospace;\n font-size: 20px;\n max-height: 45px;\n position: absolute;\n bottom: 0;\n width: 190px;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: horizontal;\n overflow: hidden;\n text-overflow: ellipsis; }\n .jp-card .jp-card-back {\n -webkit-transform: rotateY(180deg);\n -moz-transform: rotateY(180deg);\n -ms-transform: rotateY(180deg);\n -o-transform: rotateY(180deg);\n transform: rotateY(180deg); }\n .jp-card .jp-card-back .jp-card-bar {\n background-color: #444;\n background-image: -webkit-linear-gradient(#444, #333);\n background-image: linear-gradient(#444, #333);\n width: 100%;\n height: 20%;\n position: absolute;\n top: 10%; }\n .jp-card .jp-card-back:after {\n content: \" \";\n display: block;\n background-color: #FFF;\n background-image: -webkit-linear-gradient(#FFF, #FFF);\n background-image: linear-gradient(#FFF, #FFF);\n width: 80%;\n height: 16%;\n position: absolute;\n top: 40%;\n left: 2%; }\n .jp-card .jp-card-back .jp-card-cvc {\n position: absolute;\n top: 40%;\n left: 85%;\n -webkit-transition-delay: 600ms;\n -moz-transition-delay: 600ms;\n transition-delay: 600ms; }\n .jp-card .jp-card-back .jp-card-shiny {\n position: absolute;\n top: 66%;\n left: 2%; }\n .jp-card .jp-card-back .jp-card-shiny:after {\n content: \"This card has been issued by Jesse Pollak and is licensed for anyone to use anywhere for free.AIt comes with no warranty.A For support issues, please visit: github.com/jessepollak/card.\";\n position: absolute;\n left: 120%;\n top: 5%;\n color: white;\n font-size: 7px;\n width: 230px;\n opacity: .5; }\n .jp-card.jp-card-identified {\n box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }\n .jp-card.jp-card-identified .jp-card-front, .jp-card.jp-card-identified .jp-card-back {\n background-color: #000;\n background-color: rgba(0, 0, 0, 0.5); }\n .jp-card.jp-card-identified .jp-card-front:before, .jp-card.jp-card-identified .jp-card-back:before {\n -webkit-transition: all 400ms ease;\n -moz-transition: all 400ms ease;\n transition: all 400ms ease;\n background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);\n background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);\n opacity: 1; }\n .jp-card.jp-card-identified .jp-card-front .jp-card-logo, .jp-card.jp-card-identified .jp-card-back .jp-card-logo {\n box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3); }\n .jp-card.jp-card-identified.no-radial-gradient .jp-card-front:before, .jp-card.jp-card-identified.no-radial-gradient .jp-card-back:before {\n background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);\n background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%); }\n", ""]);
|
|
|
|
// exports
|
|
|
|
|
|
/***/ },
|
|
/* 3 */
|
|
/***/ 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;
|
|
};
|
|
|
|
|
|
/***/ },
|
|
/* 4 */
|
|
/***/ 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,
|
|
styleElementsInsertedAtTop = [];
|
|
|
|
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();
|
|
|
|
// By default, add <style> tags to the bottom of <head>.
|
|
if (typeof options.insertAt === "undefined") options.insertAt = "bottom";
|
|
|
|
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 insertStyleElement(options, styleElement) {
|
|
var head = getHeadElement();
|
|
var lastStyleElementInsertedAtTop = styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];
|
|
if (options.insertAt === "top") {
|
|
if(!lastStyleElementInsertedAtTop) {
|
|
head.insertBefore(styleElement, head.firstChild);
|
|
} else if(lastStyleElementInsertedAtTop.nextSibling) {
|
|
head.insertBefore(styleElement, lastStyleElementInsertedAtTop.nextSibling);
|
|
} else {
|
|
head.appendChild(styleElement);
|
|
}
|
|
styleElementsInsertedAtTop.push(styleElement);
|
|
} else if (options.insertAt === "bottom") {
|
|
head.appendChild(styleElement);
|
|
} else {
|
|
throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");
|
|
}
|
|
}
|
|
|
|
function removeStyleElement(styleElement) {
|
|
styleElement.parentNode.removeChild(styleElement);
|
|
var idx = styleElementsInsertedAtTop.indexOf(styleElement);
|
|
if(idx >= 0) {
|
|
styleElementsInsertedAtTop.splice(idx, 1);
|
|
}
|
|
}
|
|
|
|
function createStyleElement(options) {
|
|
var styleElement = document.createElement("style");
|
|
styleElement.type = "text/css";
|
|
insertStyleElement(options, styleElement);
|
|
return styleElement;
|
|
}
|
|
|
|
function createLinkElement(options) {
|
|
var linkElement = document.createElement("link");
|
|
linkElement.rel = "stylesheet";
|
|
insertStyleElement(options, linkElement);
|
|
return linkElement;
|
|
}
|
|
|
|
function addStyle(obj, options) {
|
|
var styleElement, update, remove;
|
|
|
|
if (options.singleton) {
|
|
var styleIndex = singletonCounter++;
|
|
styleElement = singletonElement || (singletonElement = createStyleElement(options));
|
|
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(options);
|
|
update = updateLink.bind(null, styleElement);
|
|
remove = function() {
|
|
removeStyleElement(styleElement);
|
|
if(styleElement.href)
|
|
URL.revokeObjectURL(styleElement.href);
|
|
};
|
|
} else {
|
|
styleElement = createStyleElement(options);
|
|
update = applyToTag.bind(null, styleElement);
|
|
remove = function() {
|
|
removeStyleElement(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;
|
|
|
|
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 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);
|
|
}
|
|
|
|
|
|
/***/ },
|
|
/* 5 */
|
|
/***/ function(module, exports) {
|
|
|
|
// Generated by CoffeeScript 1.10.0
|
|
(function() {
|
|
var QJ, rreturn, rtrim;
|
|
|
|
QJ = function(selector) {
|
|
if (QJ.isDOMElement(selector)) {
|
|
return selector;
|
|
}
|
|
return document.querySelectorAll(selector);
|
|
};
|
|
|
|
QJ.isDOMElement = function(el) {
|
|
return el && (el.nodeName != null);
|
|
};
|
|
|
|
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
|
|
|
|
QJ.trim = function(text) {
|
|
if (text === null) {
|
|
return "";
|
|
} else {
|
|
return (text + "").replace(rtrim, "");
|
|
}
|
|
};
|
|
|
|
rreturn = /\r/g;
|
|
|
|
QJ.val = function(el, val) {
|
|
var ret;
|
|
if (arguments.length > 1) {
|
|
return el.value = val;
|
|
} else {
|
|
ret = el.value;
|
|
if (typeof ret === "string") {
|
|
return ret.replace(rreturn, "");
|
|
} else {
|
|
if (ret === null) {
|
|
return "";
|
|
} else {
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
QJ.preventDefault = function(eventObject) {
|
|
if (typeof eventObject.preventDefault === "function") {
|
|
eventObject.preventDefault();
|
|
return;
|
|
}
|
|
eventObject.returnValue = false;
|
|
return false;
|
|
};
|
|
|
|
QJ.normalizeEvent = function(e) {
|
|
var original;
|
|
original = e;
|
|
e = {
|
|
which: original.which != null ? original.which : void 0,
|
|
target: original.target || original.srcElement,
|
|
preventDefault: function() {
|
|
return QJ.preventDefault(original);
|
|
},
|
|
originalEvent: original,
|
|
data: original.data || original.detail
|
|
};
|
|
if (e.which == null) {
|
|
e.which = original.charCode != null ? original.charCode : original.keyCode;
|
|
}
|
|
return e;
|
|
};
|
|
|
|
QJ.on = function(element, eventName, callback) {
|
|
var el, i, j, len, len1, multEventName, originalCallback, ref;
|
|
if (element.length) {
|
|
for (i = 0, len = element.length; i < len; i++) {
|
|
el = element[i];
|
|
QJ.on(el, eventName, callback);
|
|
}
|
|
return;
|
|
}
|
|
if (eventName.match(" ")) {
|
|
ref = eventName.split(" ");
|
|
for (j = 0, len1 = ref.length; j < len1; j++) {
|
|
multEventName = ref[j];
|
|
QJ.on(element, multEventName, callback);
|
|
}
|
|
return;
|
|
}
|
|
originalCallback = callback;
|
|
callback = function(e) {
|
|
e = QJ.normalizeEvent(e);
|
|
return originalCallback(e);
|
|
};
|
|
if (element.addEventListener) {
|
|
return element.addEventListener(eventName, callback, false);
|
|
}
|
|
if (element.attachEvent) {
|
|
eventName = "on" + eventName;
|
|
return element.attachEvent(eventName, callback);
|
|
}
|
|
element['on' + eventName] = callback;
|
|
};
|
|
|
|
QJ.addClass = function(el, className) {
|
|
var e;
|
|
if (el.length) {
|
|
return (function() {
|
|
var i, len, results;
|
|
results = [];
|
|
for (i = 0, len = el.length; i < len; i++) {
|
|
e = el[i];
|
|
results.push(QJ.addClass(e, className));
|
|
}
|
|
return results;
|
|
})();
|
|
}
|
|
if (el.classList) {
|
|
return el.classList.add(className);
|
|
} else {
|
|
return el.className += ' ' + className;
|
|
}
|
|
};
|
|
|
|
QJ.hasClass = function(el, className) {
|
|
var e, hasClass, i, len;
|
|
if (el.length) {
|
|
hasClass = true;
|
|
for (i = 0, len = el.length; i < len; i++) {
|
|
e = el[i];
|
|
hasClass = hasClass && QJ.hasClass(e, className);
|
|
}
|
|
return hasClass;
|
|
}
|
|
if (el.classList) {
|
|
return el.classList.contains(className);
|
|
} else {
|
|
return new RegExp('(^| )' + className + '( |$)', 'gi').test(el.className);
|
|
}
|
|
};
|
|
|
|
QJ.removeClass = function(el, className) {
|
|
var cls, e, i, len, ref, results;
|
|
if (el.length) {
|
|
return (function() {
|
|
var i, len, results;
|
|
results = [];
|
|
for (i = 0, len = el.length; i < len; i++) {
|
|
e = el[i];
|
|
results.push(QJ.removeClass(e, className));
|
|
}
|
|
return results;
|
|
})();
|
|
}
|
|
if (el.classList) {
|
|
ref = className.split(' ');
|
|
results = [];
|
|
for (i = 0, len = ref.length; i < len; i++) {
|
|
cls = ref[i];
|
|
results.push(el.classList.remove(cls));
|
|
}
|
|
return results;
|
|
} else {
|
|
return el.className = el.className.replace(new RegExp('(^|\\b)' + className.split(' ').join('|') + '(\\b|$)', 'gi'), ' ');
|
|
}
|
|
};
|
|
|
|
QJ.toggleClass = function(el, className, bool) {
|
|
var e;
|
|
if (el.length) {
|
|
return (function() {
|
|
var i, len, results;
|
|
results = [];
|
|
for (i = 0, len = el.length; i < len; i++) {
|
|
e = el[i];
|
|
results.push(QJ.toggleClass(e, className, bool));
|
|
}
|
|
return results;
|
|
})();
|
|
}
|
|
if (bool) {
|
|
if (!QJ.hasClass(el, className)) {
|
|
return QJ.addClass(el, className);
|
|
}
|
|
} else {
|
|
return QJ.removeClass(el, className);
|
|
}
|
|
};
|
|
|
|
QJ.append = function(el, toAppend) {
|
|
var e;
|
|
if (el.length) {
|
|
return (function() {
|
|
var i, len, results;
|
|
results = [];
|
|
for (i = 0, len = el.length; i < len; i++) {
|
|
e = el[i];
|
|
results.push(QJ.append(e, toAppend));
|
|
}
|
|
return results;
|
|
})();
|
|
}
|
|
return el.insertAdjacentHTML('beforeend', toAppend);
|
|
};
|
|
|
|
QJ.find = function(el, selector) {
|
|
if (el instanceof NodeList || el instanceof Array) {
|
|
el = el[0];
|
|
}
|
|
return el.querySelectorAll(selector);
|
|
};
|
|
|
|
QJ.trigger = function(el, name, data) {
|
|
var e, error, ev;
|
|
try {
|
|
ev = new CustomEvent(name, {
|
|
detail: data
|
|
});
|
|
} catch (error) {
|
|
e = error;
|
|
ev = document.createEvent('CustomEvent');
|
|
if (ev.initCustomEvent) {
|
|
ev.initCustomEvent(name, true, true, data);
|
|
} else {
|
|
ev.initEvent(name, true, true, data);
|
|
}
|
|
}
|
|
return el.dispatchEvent(ev);
|
|
};
|
|
|
|
module.exports = QJ;
|
|
|
|
}).call(this);
|
|
|
|
|
|
/***/ },
|
|
/* 6 */
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
/* WEBPACK VAR INJECTION */(function(global) {// Generated by CoffeeScript 1.10.0
|
|
(function() {
|
|
var Payment, QJ, cardFromNumber, cardFromType, cards, defaultFormat, formatBackCardNumber, formatBackExpiry, formatCardNumber, formatExpiry, formatForwardExpiry, formatForwardSlash, formatMonthExpiry, hasTextSelected, luhnCheck, reFormatCardNumber, restrictCVC, restrictCardNumber, restrictCombinedExpiry, restrictExpiry, restrictMonthExpiry, restrictNumeric, restrictYearExpiry, setCardType,
|
|
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
|
|
|
|
QJ = __webpack_require__(5);
|
|
|
|
defaultFormat = /(\d{1,4})/g;
|
|
|
|
cards = [
|
|
{
|
|
type: 'amex',
|
|
pattern: /^3[47]/,
|
|
format: /(\d{1,4})(\d{1,6})?(\d{1,5})?/,
|
|
length: [15],
|
|
cvcLength: [4],
|
|
luhn: true
|
|
}, {
|
|
type: 'dankort',
|
|
pattern: /^5019/,
|
|
format: defaultFormat,
|
|
length: [16],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'dinersclub',
|
|
pattern: /^(36|38|30[0-5])/,
|
|
format: /(\d{1,4})(\d{1,6})?(\d{1,4})?/,
|
|
length: [14],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'discover',
|
|
pattern: /^(6011|65|64[4-9]|622)/,
|
|
format: defaultFormat,
|
|
length: [16],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'jcb',
|
|
pattern: /^35/,
|
|
format: defaultFormat,
|
|
length: [16],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'laser',
|
|
pattern: /^(6706|6771|6709)/,
|
|
format: defaultFormat,
|
|
length: [16, 17, 18, 19],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'maestro',
|
|
pattern: /^(5018|5020|5038|6304|6703|6708|6759|676[1-3])/,
|
|
format: defaultFormat,
|
|
length: [12, 13, 14, 15, 16, 17, 18, 19],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'mastercard',
|
|
pattern: /^5[1-5]/,
|
|
pattern: /^(5[1-5]|677189)|^(222[1-9]|2[3-6]\d{2}|27[0-1]\d|2720)/,
|
|
format: defaultFormat,
|
|
length: [16],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'unionpay',
|
|
pattern: /^62/,
|
|
format: defaultFormat,
|
|
length: [16, 17, 18, 19],
|
|
cvcLength: [3],
|
|
luhn: false
|
|
}, {
|
|
type: 'visaelectron',
|
|
pattern: /^4(026|17500|405|508|844|91[37])/,
|
|
format: defaultFormat,
|
|
length: [16],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'elo',
|
|
pattern: /^(4011|438935|45(1416|76|7393)|50(4175|6699|67|90[4-7])|63(6297|6368))/,
|
|
format: defaultFormat,
|
|
length: [16],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}, {
|
|
type: 'visa',
|
|
pattern: /^4/,
|
|
format: defaultFormat,
|
|
length: [13, 16, 19],
|
|
cvcLength: [3],
|
|
luhn: true
|
|
}
|
|
];
|
|
|
|
cardFromNumber = function(num) {
|
|
var card, i, len;
|
|
num = (num + '').replace(/\D/g, '');
|
|
for (i = 0, len = cards.length; i < len; i++) {
|
|
card = cards[i];
|
|
if (card.pattern.test(num)) {
|
|
return card;
|
|
}
|
|
}
|
|
};
|
|
|
|
cardFromType = function(type) {
|
|
var card, i, len;
|
|
for (i = 0, len = cards.length; i < len; i++) {
|
|
card = cards[i];
|
|
if (card.type === type) {
|
|
return card;
|
|
}
|
|
}
|
|
};
|
|
|
|
luhnCheck = function(num) {
|
|
var digit, digits, i, len, odd, sum;
|
|
odd = true;
|
|
sum = 0;
|
|
digits = (num + '').split('').reverse();
|
|
for (i = 0, len = digits.length; i < len; i++) {
|
|
digit = digits[i];
|
|
digit = parseInt(digit, 10);
|
|
if ((odd = !odd)) {
|
|
digit *= 2;
|
|
}
|
|
if (digit > 9) {
|
|
digit -= 9;
|
|
}
|
|
sum += digit;
|
|
}
|
|
return sum % 10 === 0;
|
|
};
|
|
|
|
hasTextSelected = function(target) {
|
|
var e, error, ref;
|
|
try {
|
|
if ((target.selectionStart != null) && target.selectionStart !== target.selectionEnd) {
|
|
return true;
|
|
}
|
|
if ((typeof document !== "undefined" && document !== null ? (ref = document.selection) != null ? ref.createRange : void 0 : void 0) != null) {
|
|
if (document.selection.createRange().text) {
|
|
return true;
|
|
}
|
|
}
|
|
} catch (error) {
|
|
e = error;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
reFormatCardNumber = function(e) {
|
|
return setTimeout((function(_this) {
|
|
return function() {
|
|
var target, value;
|
|
target = e.target;
|
|
value = QJ.val(target);
|
|
value = Payment.fns.formatCardNumber(value);
|
|
QJ.val(target, value);
|
|
return QJ.trigger(target, 'change');
|
|
};
|
|
})(this));
|
|
};
|
|
|
|
formatCardNumber = function(e) {
|
|
var card, digit, length, re, target, upperLength, value;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
target = e.target;
|
|
value = QJ.val(target);
|
|
card = cardFromNumber(value + digit);
|
|
length = (value.replace(/\D/g, '') + digit).length;
|
|
upperLength = 16;
|
|
if (card) {
|
|
upperLength = card.length[card.length.length - 1];
|
|
}
|
|
if (length >= upperLength) {
|
|
return;
|
|
}
|
|
if (hasTextSelected(target)) {
|
|
return;
|
|
}
|
|
if (card && card.type === 'amex') {
|
|
re = /^(\d{4}|\d{4}\s\d{6})$/;
|
|
} else {
|
|
re = /(?:^|\s)(\d{4})$/;
|
|
}
|
|
if (re.test(value)) {
|
|
e.preventDefault();
|
|
QJ.val(target, value + ' ' + digit);
|
|
return QJ.trigger(target, 'change');
|
|
} else if (re.test(value + digit)) {
|
|
e.preventDefault();
|
|
QJ.val(target, value + digit + ' ');
|
|
return QJ.trigger(target, 'change');
|
|
}
|
|
};
|
|
|
|
formatBackCardNumber = function(e) {
|
|
var target, value;
|
|
target = e.target;
|
|
value = QJ.val(target);
|
|
if (e.meta) {
|
|
return;
|
|
}
|
|
if (e.which !== 8) {
|
|
return;
|
|
}
|
|
if (hasTextSelected(target)) {
|
|
return;
|
|
}
|
|
if (/\d\s$/.test(value)) {
|
|
e.preventDefault();
|
|
return QJ.val(target, value.replace(/\d\s$/, ''));
|
|
} else if (/\s\d?$/.test(value)) {
|
|
e.preventDefault();
|
|
return QJ.val(target, value.replace(/\s\d?$/, ''));
|
|
}
|
|
};
|
|
|
|
formatExpiry = function(e) {
|
|
var digit, target, val;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
target = e.target;
|
|
val = QJ.val(target) + digit;
|
|
if (/^\d$/.test(val) && (val !== '0' && val !== '1')) {
|
|
e.preventDefault();
|
|
return QJ.val(target, "0" + val + " / ");
|
|
} else if (/^\d\d$/.test(val)) {
|
|
e.preventDefault();
|
|
return QJ.val(target, val + " / ");
|
|
}
|
|
};
|
|
|
|
formatMonthExpiry = function(e) {
|
|
var digit, target, val;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
target = e.target;
|
|
val = QJ.val(target) + digit;
|
|
if (/^\d$/.test(val) && (val !== '0' && val !== '1')) {
|
|
e.preventDefault();
|
|
return QJ.val(target, "0" + val);
|
|
} else if (/^\d\d$/.test(val)) {
|
|
e.preventDefault();
|
|
return QJ.val(target, "" + val);
|
|
}
|
|
};
|
|
|
|
formatForwardExpiry = function(e) {
|
|
var digit, target, val;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
target = e.target;
|
|
val = QJ.val(target);
|
|
if (/^\d\d$/.test(val)) {
|
|
return QJ.val(target, val + " / ");
|
|
}
|
|
};
|
|
|
|
formatForwardSlash = function(e) {
|
|
var slash, target, val;
|
|
slash = String.fromCharCode(e.which);
|
|
if (slash !== '/') {
|
|
return;
|
|
}
|
|
target = e.target;
|
|
val = QJ.val(target);
|
|
if (/^\d$/.test(val) && val !== '0') {
|
|
return QJ.val(target, "0" + val + " / ");
|
|
}
|
|
};
|
|
|
|
formatBackExpiry = function(e) {
|
|
var target, value;
|
|
if (e.metaKey) {
|
|
return;
|
|
}
|
|
target = e.target;
|
|
value = QJ.val(target);
|
|
if (e.which !== 8) {
|
|
return;
|
|
}
|
|
if (hasTextSelected(target)) {
|
|
return;
|
|
}
|
|
if (/\d(\s|\/)+$/.test(value)) {
|
|
e.preventDefault();
|
|
return QJ.val(target, value.replace(/\d(\s|\/)*$/, ''));
|
|
} else if (/\s\/\s?\d?$/.test(value)) {
|
|
e.preventDefault();
|
|
return QJ.val(target, value.replace(/\s\/\s?\d?$/, ''));
|
|
}
|
|
};
|
|
|
|
restrictNumeric = function(e) {
|
|
var input;
|
|
if (e.metaKey || e.ctrlKey) {
|
|
return true;
|
|
}
|
|
if (e.which === 32) {
|
|
return e.preventDefault();
|
|
}
|
|
if (e.which === 0) {
|
|
return true;
|
|
}
|
|
if (e.which < 33) {
|
|
return true;
|
|
}
|
|
input = String.fromCharCode(e.which);
|
|
if (!/[\d\s]/.test(input)) {
|
|
return e.preventDefault();
|
|
}
|
|
};
|
|
|
|
restrictCardNumber = function(e) {
|
|
var card, digit, target, value;
|
|
target = e.target;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
if (hasTextSelected(target)) {
|
|
return;
|
|
}
|
|
value = (QJ.val(target) + digit).replace(/\D/g, '');
|
|
card = cardFromNumber(value);
|
|
if (card) {
|
|
if (!(value.length <= card.length[card.length.length - 1])) {
|
|
return e.preventDefault();
|
|
}
|
|
} else {
|
|
if (!(value.length <= 16)) {
|
|
return e.preventDefault();
|
|
}
|
|
}
|
|
};
|
|
|
|
restrictExpiry = function(e, length) {
|
|
var digit, target, value;
|
|
target = e.target;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
if (hasTextSelected(target)) {
|
|
return;
|
|
}
|
|
value = QJ.val(target) + digit;
|
|
value = value.replace(/\D/g, '');
|
|
if (value.length > length) {
|
|
return e.preventDefault();
|
|
}
|
|
};
|
|
|
|
restrictCombinedExpiry = function(e) {
|
|
return restrictExpiry(e, 6);
|
|
};
|
|
|
|
restrictMonthExpiry = function(e) {
|
|
return restrictExpiry(e, 2);
|
|
};
|
|
|
|
restrictYearExpiry = function(e) {
|
|
return restrictExpiry(e, 4);
|
|
};
|
|
|
|
restrictCVC = function(e) {
|
|
var digit, target, val;
|
|
target = e.target;
|
|
digit = String.fromCharCode(e.which);
|
|
if (!/^\d+$/.test(digit)) {
|
|
return;
|
|
}
|
|
if (hasTextSelected(target)) {
|
|
return;
|
|
}
|
|
val = QJ.val(target) + digit;
|
|
if (!(val.length <= 4)) {
|
|
return e.preventDefault();
|
|
}
|
|
};
|
|
|
|
setCardType = function(e) {
|
|
var allTypes, card, cardType, target, val;
|
|
target = e.target;
|
|
val = QJ.val(target);
|
|
cardType = Payment.fns.cardType(val) || 'unknown';
|
|
if (!QJ.hasClass(target, cardType)) {
|
|
allTypes = (function() {
|
|
var i, len, results;
|
|
results = [];
|
|
for (i = 0, len = cards.length; i < len; i++) {
|
|
card = cards[i];
|
|
results.push(card.type);
|
|
}
|
|
return results;
|
|
})();
|
|
QJ.removeClass(target, 'unknown');
|
|
QJ.removeClass(target, allTypes.join(' '));
|
|
QJ.addClass(target, cardType);
|
|
QJ.toggleClass(target, 'identified', cardType !== 'unknown');
|
|
return QJ.trigger(target, 'payment.cardType', cardType);
|
|
}
|
|
};
|
|
|
|
Payment = (function() {
|
|
function Payment() {}
|
|
|
|
Payment.fns = {
|
|
cardExpiryVal: function(value) {
|
|
var month, prefix, ref, year;
|
|
value = value.replace(/\s/g, '');
|
|
ref = value.split('/', 2), month = ref[0], year = ref[1];
|
|
if ((year != null ? year.length : void 0) === 2 && /^\d+$/.test(year)) {
|
|
prefix = (new Date).getFullYear();
|
|
prefix = prefix.toString().slice(0, 2);
|
|
year = prefix + year;
|
|
}
|
|
month = parseInt(month, 10);
|
|
year = parseInt(year, 10);
|
|
return {
|
|
month: month,
|
|
year: year
|
|
};
|
|
},
|
|
validateCardNumber: function(num) {
|
|
var card, ref;
|
|
num = (num + '').replace(/\s+|-/g, '');
|
|
if (!/^\d+$/.test(num)) {
|
|
return false;
|
|
}
|
|
card = cardFromNumber(num);
|
|
if (!card) {
|
|
return false;
|
|
}
|
|
return (ref = num.length, indexOf.call(card.length, ref) >= 0) && (card.luhn === false || luhnCheck(num));
|
|
},
|
|
validateCardExpiry: function(month, year) {
|
|
var currentTime, expiry, prefix, ref, ref1;
|
|
if (typeof month === 'object' && 'month' in month) {
|
|
ref = month, month = ref.month, year = ref.year;
|
|
} else if (typeof month === 'string' && indexOf.call(month, '/') >= 0) {
|
|
ref1 = Payment.fns.cardExpiryVal(month), month = ref1.month, year = ref1.year;
|
|
}
|
|
if (!(month && year)) {
|
|
return false;
|
|
}
|
|
month = QJ.trim(month);
|
|
year = QJ.trim(year);
|
|
if (!/^\d+$/.test(month)) {
|
|
return false;
|
|
}
|
|
if (!/^\d+$/.test(year)) {
|
|
return false;
|
|
}
|
|
month = parseInt(month, 10);
|
|
if (!(month && month <= 12)) {
|
|
return false;
|
|
}
|
|
if (year.length === 2) {
|
|
prefix = (new Date).getFullYear();
|
|
prefix = prefix.toString().slice(0, 2);
|
|
year = prefix + year;
|
|
}
|
|
expiry = new Date(year, month);
|
|
currentTime = new Date;
|
|
expiry.setMonth(expiry.getMonth() - 1);
|
|
expiry.setMonth(expiry.getMonth() + 1, 1);
|
|
return expiry > currentTime;
|
|
},
|
|
validateCardCVC: function(cvc, type) {
|
|
var ref, ref1;
|
|
cvc = QJ.trim(cvc);
|
|
if (!/^\d+$/.test(cvc)) {
|
|
return false;
|
|
}
|
|
if (type && cardFromType(type)) {
|
|
return ref = cvc.length, indexOf.call((ref1 = cardFromType(type)) != null ? ref1.cvcLength : void 0, ref) >= 0;
|
|
} else {
|
|
return cvc.length >= 3 && cvc.length <= 4;
|
|
}
|
|
},
|
|
cardType: function(num) {
|
|
var ref;
|
|
if (!num) {
|
|
return null;
|
|
}
|
|
return ((ref = cardFromNumber(num)) != null ? ref.type : void 0) || null;
|
|
},
|
|
formatCardNumber: function(num) {
|
|
var card, groups, ref, upperLength;
|
|
card = cardFromNumber(num);
|
|
if (!card) {
|
|
return num;
|
|
}
|
|
upperLength = card.length[card.length.length - 1];
|
|
num = num.replace(/\D/g, '');
|
|
num = num.slice(0, upperLength);
|
|
if (card.format.global) {
|
|
return (ref = num.match(card.format)) != null ? ref.join(' ') : void 0;
|
|
} else {
|
|
groups = card.format.exec(num);
|
|
if (groups != null) {
|
|
groups.shift();
|
|
}
|
|
return groups != null ? groups.join(' ') : void 0;
|
|
}
|
|
}
|
|
};
|
|
|
|
Payment.restrictNumeric = function(el) {
|
|
return QJ.on(el, 'keypress', restrictNumeric);
|
|
};
|
|
|
|
Payment.cardExpiryVal = function(el) {
|
|
return Payment.fns.cardExpiryVal(QJ.val(el));
|
|
};
|
|
|
|
Payment.formatCardCVC = function(el) {
|
|
Payment.restrictNumeric(el);
|
|
QJ.on(el, 'keypress', restrictCVC);
|
|
return el;
|
|
};
|
|
|
|
Payment.formatCardExpiry = function(el) {
|
|
var month, year;
|
|
Payment.restrictNumeric(el);
|
|
if (el.length && el.length === 2) {
|
|
month = el[0], year = el[1];
|
|
this.formatCardExpiryMultiple(month, year);
|
|
} else {
|
|
QJ.on(el, 'keypress', restrictCombinedExpiry);
|
|
QJ.on(el, 'keypress', formatExpiry);
|
|
QJ.on(el, 'keypress', formatForwardSlash);
|
|
QJ.on(el, 'keypress', formatForwardExpiry);
|
|
QJ.on(el, 'keydown', formatBackExpiry);
|
|
}
|
|
return el;
|
|
};
|
|
|
|
Payment.formatCardExpiryMultiple = function(month, year) {
|
|
QJ.on(month, 'keypress', restrictMonthExpiry);
|
|
QJ.on(month, 'keypress', formatMonthExpiry);
|
|
return QJ.on(year, 'keypress', restrictYearExpiry);
|
|
};
|
|
|
|
Payment.formatCardNumber = function(el) {
|
|
Payment.restrictNumeric(el);
|
|
QJ.on(el, 'keypress', restrictCardNumber);
|
|
QJ.on(el, 'keypress', formatCardNumber);
|
|
QJ.on(el, 'keydown', formatBackCardNumber);
|
|
QJ.on(el, 'keyup', setCardType);
|
|
QJ.on(el, 'paste', reFormatCardNumber);
|
|
return el;
|
|
};
|
|
|
|
Payment.getCardArray = function() {
|
|
return cards;
|
|
};
|
|
|
|
Payment.setCardArray = function(cardArray) {
|
|
cards = cardArray;
|
|
return true;
|
|
};
|
|
|
|
Payment.addToCardArray = function(cardObject) {
|
|
return cards.push(cardObject);
|
|
};
|
|
|
|
Payment.removeFromCardArray = function(type) {
|
|
var key, value;
|
|
for (key in cards) {
|
|
value = cards[key];
|
|
if (value.type === type) {
|
|
cards.splice(key, 1);
|
|
}
|
|
}
|
|
return true;
|
|
};
|
|
|
|
return Payment;
|
|
|
|
})();
|
|
|
|
module.exports = Payment;
|
|
|
|
global.Payment = Payment;
|
|
|
|
}).call(this);
|
|
|
|
/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
|
|
|
|
/***/ },
|
|
/* 7 */
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
'use strict';
|
|
|
|
module.exports = __webpack_require__(8);
|
|
|
|
|
|
/***/ },
|
|
/* 8 */
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
'use strict';
|
|
|
|
/*!
|
|
* node.extend
|
|
* Copyright 2011, John Resig
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*
|
|
* @fileoverview
|
|
* Port of jQuery.extend that actually works on node.js
|
|
*/
|
|
var is = __webpack_require__(9);
|
|
|
|
var extend = function extend() {
|
|
var target = arguments[0] || {};
|
|
var i = 1;
|
|
var length = arguments.length;
|
|
var deep = false;
|
|
var options, name, src, copy, copyIsArray, clone;
|
|
|
|
// Handle a deep copy situation
|
|
if (typeof target === 'boolean') {
|
|
deep = target;
|
|
target = arguments[1] || {};
|
|
// skip the boolean and the target
|
|
i = 2;
|
|
}
|
|
|
|
// Handle case when target is a string or something (possible in deep copy)
|
|
if (typeof target !== 'object' && !is.fn(target)) {
|
|
target = {};
|
|
}
|
|
|
|
for (; i < length; i++) {
|
|
// Only deal with non-null/undefined values
|
|
options = arguments[i];
|
|
if (options != null) {
|
|
if (typeof options === 'string') {
|
|
options = options.split('');
|
|
}
|
|
// Extend the base object
|
|
for (name in options) {
|
|
src = target[name];
|
|
copy = options[name];
|
|
|
|
// Prevent never-ending loop
|
|
if (target === copy) {
|
|
continue;
|
|
}
|
|
|
|
// Recurse if we're merging plain objects or arrays
|
|
if (deep && copy && (is.hash(copy) || (copyIsArray = is.array(copy)))) {
|
|
if (copyIsArray) {
|
|
copyIsArray = false;
|
|
clone = src && is.array(src) ? src : [];
|
|
} else {
|
|
clone = src && is.hash(src) ? src : {};
|
|
}
|
|
|
|
// Never move original objects, clone them
|
|
target[name] = extend(deep, clone, copy);
|
|
|
|
// Don't bring in undefined values
|
|
} else if (typeof copy !== 'undefined') {
|
|
target[name] = copy;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Return the modified object
|
|
return target;
|
|
};
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
extend.version = '1.1.3';
|
|
|
|
/**
|
|
* Exports module.
|
|
*/
|
|
module.exports = extend;
|
|
|
|
|
|
/***/ },
|
|
/* 9 */
|
|
/***/ function(module, exports) {
|
|
|
|
/* globals window, HTMLElement */
|
|
|
|
'use strict';
|
|
|
|
/**!
|
|
* is
|
|
* the definitive JavaScript type testing library
|
|
*
|
|
* @copyright 2013-2014 Enrico Marino / Jordan Harband
|
|
* @license MIT
|
|
*/
|
|
|
|
var objProto = Object.prototype;
|
|
var owns = objProto.hasOwnProperty;
|
|
var toStr = objProto.toString;
|
|
var symbolValueOf;
|
|
if (typeof Symbol === 'function') {
|
|
symbolValueOf = Symbol.prototype.valueOf;
|
|
}
|
|
var isActualNaN = function (value) {
|
|
return value !== value;
|
|
};
|
|
var NON_HOST_TYPES = {
|
|
'boolean': 1,
|
|
number: 1,
|
|
string: 1,
|
|
undefined: 1
|
|
};
|
|
|
|
var base64Regex = /^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$/;
|
|
var hexRegex = /^[A-Fa-f0-9]+$/;
|
|
|
|
/**
|
|
* Expose `is`
|
|
*/
|
|
|
|
var is = {};
|
|
|
|
/**
|
|
* Test general.
|
|
*/
|
|
|
|
/**
|
|
* is.type
|
|
* Test if `value` is a type of `type`.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @param {String} type type
|
|
* @return {Boolean} true if `value` is a type of `type`, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.a = is.type = function (value, type) {
|
|
return typeof value === type;
|
|
};
|
|
|
|
/**
|
|
* is.defined
|
|
* Test if `value` is defined.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if 'value' is defined, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.defined = function (value) {
|
|
return typeof value !== 'undefined';
|
|
};
|
|
|
|
/**
|
|
* is.empty
|
|
* Test if `value` is empty.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is empty, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.empty = function (value) {
|
|
var type = toStr.call(value);
|
|
var key;
|
|
|
|
if (type === '[object Array]' || type === '[object Arguments]' || type === '[object String]') {
|
|
return value.length === 0;
|
|
}
|
|
|
|
if (type === '[object Object]') {
|
|
for (key in value) {
|
|
if (owns.call(value, key)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
return !value;
|
|
};
|
|
|
|
/**
|
|
* is.equal
|
|
* Test if `value` is equal to `other`.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @param {Mixed} other value to compare with
|
|
* @return {Boolean} true if `value` is equal to `other`, false otherwise
|
|
*/
|
|
|
|
is.equal = function equal(value, other) {
|
|
if (value === other) {
|
|
return true;
|
|
}
|
|
|
|
var type = toStr.call(value);
|
|
var key;
|
|
|
|
if (type !== toStr.call(other)) {
|
|
return false;
|
|
}
|
|
|
|
if (type === '[object Object]') {
|
|
for (key in value) {
|
|
if (!is.equal(value[key], other[key]) || !(key in other)) {
|
|
return false;
|
|
}
|
|
}
|
|
for (key in other) {
|
|
if (!is.equal(value[key], other[key]) || !(key in value)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (type === '[object Array]') {
|
|
key = value.length;
|
|
if (key !== other.length) {
|
|
return false;
|
|
}
|
|
while (key--) {
|
|
if (!is.equal(value[key], other[key])) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (type === '[object Function]') {
|
|
return value.prototype === other.prototype;
|
|
}
|
|
|
|
if (type === '[object Date]') {
|
|
return value.getTime() === other.getTime();
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* is.hosted
|
|
* Test if `value` is hosted by `host`.
|
|
*
|
|
* @param {Mixed} value to test
|
|
* @param {Mixed} host host to test with
|
|
* @return {Boolean} true if `value` is hosted by `host`, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.hosted = function (value, host) {
|
|
var type = typeof host[value];
|
|
return type === 'object' ? !!host[value] : !NON_HOST_TYPES[type];
|
|
};
|
|
|
|
/**
|
|
* is.instance
|
|
* Test if `value` is an instance of `constructor`.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an instance of `constructor`
|
|
* @api public
|
|
*/
|
|
|
|
is.instance = is['instanceof'] = function (value, constructor) {
|
|
return value instanceof constructor;
|
|
};
|
|
|
|
/**
|
|
* is.nil / is.null
|
|
* Test if `value` is null.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is null, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.nil = is['null'] = function (value) {
|
|
return value === null;
|
|
};
|
|
|
|
/**
|
|
* is.undef / is.undefined
|
|
* Test if `value` is undefined.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is undefined, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.undef = is.undefined = function (value) {
|
|
return typeof value === 'undefined';
|
|
};
|
|
|
|
/**
|
|
* Test arguments.
|
|
*/
|
|
|
|
/**
|
|
* is.args
|
|
* Test if `value` is an arguments object.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an arguments object, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.args = is.arguments = function (value) {
|
|
var isStandardArguments = toStr.call(value) === '[object Arguments]';
|
|
var isOldArguments = !is.array(value) && is.arraylike(value) && is.object(value) && is.fn(value.callee);
|
|
return isStandardArguments || isOldArguments;
|
|
};
|
|
|
|
/**
|
|
* Test array.
|
|
*/
|
|
|
|
/**
|
|
* is.array
|
|
* Test if 'value' is an array.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an array, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.array = Array.isArray || function (value) {
|
|
return toStr.call(value) === '[object Array]';
|
|
};
|
|
|
|
/**
|
|
* is.arguments.empty
|
|
* Test if `value` is an empty arguments object.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an empty arguments object, false otherwise
|
|
* @api public
|
|
*/
|
|
is.args.empty = function (value) {
|
|
return is.args(value) && value.length === 0;
|
|
};
|
|
|
|
/**
|
|
* is.array.empty
|
|
* Test if `value` is an empty array.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an empty array, false otherwise
|
|
* @api public
|
|
*/
|
|
is.array.empty = function (value) {
|
|
return is.array(value) && value.length === 0;
|
|
};
|
|
|
|
/**
|
|
* is.arraylike
|
|
* Test if `value` is an arraylike object.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an arguments object, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.arraylike = function (value) {
|
|
return !!value && !is.bool(value)
|
|
&& owns.call(value, 'length')
|
|
&& isFinite(value.length)
|
|
&& is.number(value.length)
|
|
&& value.length >= 0;
|
|
};
|
|
|
|
/**
|
|
* Test boolean.
|
|
*/
|
|
|
|
/**
|
|
* is.bool
|
|
* Test if `value` is a boolean.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a boolean, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.bool = is['boolean'] = function (value) {
|
|
return toStr.call(value) === '[object Boolean]';
|
|
};
|
|
|
|
/**
|
|
* is.false
|
|
* Test if `value` is false.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is false, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is['false'] = function (value) {
|
|
return is.bool(value) && Boolean(Number(value)) === false;
|
|
};
|
|
|
|
/**
|
|
* is.true
|
|
* Test if `value` is true.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is true, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is['true'] = function (value) {
|
|
return is.bool(value) && Boolean(Number(value)) === true;
|
|
};
|
|
|
|
/**
|
|
* Test date.
|
|
*/
|
|
|
|
/**
|
|
* is.date
|
|
* Test if `value` is a date.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a date, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.date = function (value) {
|
|
return toStr.call(value) === '[object Date]';
|
|
};
|
|
|
|
/**
|
|
* is.date.valid
|
|
* Test if `value` is a valid date.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @returns {Boolean} true if `value` is a valid date, false otherwise
|
|
*/
|
|
is.date.valid = function (value) {
|
|
return is.date(value) && !isNaN(Number(value));
|
|
};
|
|
|
|
/**
|
|
* Test element.
|
|
*/
|
|
|
|
/**
|
|
* is.element
|
|
* Test if `value` is an html element.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an HTML Element, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.element = function (value) {
|
|
return value !== undefined
|
|
&& typeof HTMLElement !== 'undefined'
|
|
&& value instanceof HTMLElement
|
|
&& value.nodeType === 1;
|
|
};
|
|
|
|
/**
|
|
* Test error.
|
|
*/
|
|
|
|
/**
|
|
* is.error
|
|
* Test if `value` is an error object.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an error object, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.error = function (value) {
|
|
return toStr.call(value) === '[object Error]';
|
|
};
|
|
|
|
/**
|
|
* Test function.
|
|
*/
|
|
|
|
/**
|
|
* is.fn / is.function (deprecated)
|
|
* Test if `value` is a function.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a function, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.fn = is['function'] = function (value) {
|
|
var isAlert = typeof window !== 'undefined' && value === window.alert;
|
|
return isAlert || toStr.call(value) === '[object Function]';
|
|
};
|
|
|
|
/**
|
|
* Test number.
|
|
*/
|
|
|
|
/**
|
|
* is.number
|
|
* Test if `value` is a number.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a number, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.number = function (value) {
|
|
return toStr.call(value) === '[object Number]';
|
|
};
|
|
|
|
/**
|
|
* is.infinite
|
|
* Test if `value` is positive or negative infinity.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is positive or negative Infinity, false otherwise
|
|
* @api public
|
|
*/
|
|
is.infinite = function (value) {
|
|
return value === Infinity || value === -Infinity;
|
|
};
|
|
|
|
/**
|
|
* is.decimal
|
|
* Test if `value` is a decimal number.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a decimal number, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.decimal = function (value) {
|
|
return is.number(value) && !isActualNaN(value) && !is.infinite(value) && value % 1 !== 0;
|
|
};
|
|
|
|
/**
|
|
* is.divisibleBy
|
|
* Test if `value` is divisible by `n`.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Number} n dividend
|
|
* @return {Boolean} true if `value` is divisible by `n`, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.divisibleBy = function (value, n) {
|
|
var isDividendInfinite = is.infinite(value);
|
|
var isDivisorInfinite = is.infinite(n);
|
|
var isNonZeroNumber = is.number(value) && !isActualNaN(value) && is.number(n) && !isActualNaN(n) && n !== 0;
|
|
return isDividendInfinite || isDivisorInfinite || (isNonZeroNumber && value % n === 0);
|
|
};
|
|
|
|
/**
|
|
* is.integer
|
|
* Test if `value` is an integer.
|
|
*
|
|
* @param value to test
|
|
* @return {Boolean} true if `value` is an integer, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.integer = is['int'] = function (value) {
|
|
return is.number(value) && !isActualNaN(value) && value % 1 === 0;
|
|
};
|
|
|
|
/**
|
|
* is.maximum
|
|
* Test if `value` is greater than 'others' values.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Array} others values to compare with
|
|
* @return {Boolean} true if `value` is greater than `others` values
|
|
* @api public
|
|
*/
|
|
|
|
is.maximum = function (value, others) {
|
|
if (isActualNaN(value)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
} else if (!is.arraylike(others)) {
|
|
throw new TypeError('second argument must be array-like');
|
|
}
|
|
var len = others.length;
|
|
|
|
while (--len >= 0) {
|
|
if (value < others[len]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
/**
|
|
* is.minimum
|
|
* Test if `value` is less than `others` values.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Array} others values to compare with
|
|
* @return {Boolean} true if `value` is less than `others` values
|
|
* @api public
|
|
*/
|
|
|
|
is.minimum = function (value, others) {
|
|
if (isActualNaN(value)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
} else if (!is.arraylike(others)) {
|
|
throw new TypeError('second argument must be array-like');
|
|
}
|
|
var len = others.length;
|
|
|
|
while (--len >= 0) {
|
|
if (value > others[len]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
/**
|
|
* is.nan
|
|
* Test if `value` is not a number.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is not a number, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.nan = function (value) {
|
|
return !is.number(value) || value !== value;
|
|
};
|
|
|
|
/**
|
|
* is.even
|
|
* Test if `value` is an even number.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @return {Boolean} true if `value` is an even number, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.even = function (value) {
|
|
return is.infinite(value) || (is.number(value) && value === value && value % 2 === 0);
|
|
};
|
|
|
|
/**
|
|
* is.odd
|
|
* Test if `value` is an odd number.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @return {Boolean} true if `value` is an odd number, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.odd = function (value) {
|
|
return is.infinite(value) || (is.number(value) && value === value && value % 2 !== 0);
|
|
};
|
|
|
|
/**
|
|
* is.ge
|
|
* Test if `value` is greater than or equal to `other`.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Number} other value to compare with
|
|
* @return {Boolean}
|
|
* @api public
|
|
*/
|
|
|
|
is.ge = function (value, other) {
|
|
if (isActualNaN(value) || isActualNaN(other)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
}
|
|
return !is.infinite(value) && !is.infinite(other) && value >= other;
|
|
};
|
|
|
|
/**
|
|
* is.gt
|
|
* Test if `value` is greater than `other`.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Number} other value to compare with
|
|
* @return {Boolean}
|
|
* @api public
|
|
*/
|
|
|
|
is.gt = function (value, other) {
|
|
if (isActualNaN(value) || isActualNaN(other)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
}
|
|
return !is.infinite(value) && !is.infinite(other) && value > other;
|
|
};
|
|
|
|
/**
|
|
* is.le
|
|
* Test if `value` is less than or equal to `other`.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Number} other value to compare with
|
|
* @return {Boolean} if 'value' is less than or equal to 'other'
|
|
* @api public
|
|
*/
|
|
|
|
is.le = function (value, other) {
|
|
if (isActualNaN(value) || isActualNaN(other)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
}
|
|
return !is.infinite(value) && !is.infinite(other) && value <= other;
|
|
};
|
|
|
|
/**
|
|
* is.lt
|
|
* Test if `value` is less than `other`.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Number} other value to compare with
|
|
* @return {Boolean} if `value` is less than `other`
|
|
* @api public
|
|
*/
|
|
|
|
is.lt = function (value, other) {
|
|
if (isActualNaN(value) || isActualNaN(other)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
}
|
|
return !is.infinite(value) && !is.infinite(other) && value < other;
|
|
};
|
|
|
|
/**
|
|
* is.within
|
|
* Test if `value` is within `start` and `finish`.
|
|
*
|
|
* @param {Number} value value to test
|
|
* @param {Number} start lower bound
|
|
* @param {Number} finish upper bound
|
|
* @return {Boolean} true if 'value' is is within 'start' and 'finish'
|
|
* @api public
|
|
*/
|
|
is.within = function (value, start, finish) {
|
|
if (isActualNaN(value) || isActualNaN(start) || isActualNaN(finish)) {
|
|
throw new TypeError('NaN is not a valid value');
|
|
} else if (!is.number(value) || !is.number(start) || !is.number(finish)) {
|
|
throw new TypeError('all arguments must be numbers');
|
|
}
|
|
var isAnyInfinite = is.infinite(value) || is.infinite(start) || is.infinite(finish);
|
|
return isAnyInfinite || (value >= start && value <= finish);
|
|
};
|
|
|
|
/**
|
|
* Test object.
|
|
*/
|
|
|
|
/**
|
|
* is.object
|
|
* Test if `value` is an object.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is an object, false otherwise
|
|
* @api public
|
|
*/
|
|
is.object = function (value) {
|
|
return toStr.call(value) === '[object Object]';
|
|
};
|
|
|
|
/**
|
|
* is.primitive
|
|
* Test if `value` is a primitive.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a primitive, false otherwise
|
|
* @api public
|
|
*/
|
|
is.primitive = function isPrimitive(value) {
|
|
if (!value) {
|
|
return true;
|
|
}
|
|
if (typeof value === 'object' || is.object(value) || is.fn(value) || is.array(value)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
|
|
/**
|
|
* is.hash
|
|
* Test if `value` is a hash - a plain object literal.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a hash, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.hash = function (value) {
|
|
return is.object(value) && value.constructor === Object && !value.nodeType && !value.setInterval;
|
|
};
|
|
|
|
/**
|
|
* Test regexp.
|
|
*/
|
|
|
|
/**
|
|
* is.regexp
|
|
* Test if `value` is a regular expression.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a regexp, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.regexp = function (value) {
|
|
return toStr.call(value) === '[object RegExp]';
|
|
};
|
|
|
|
/**
|
|
* Test string.
|
|
*/
|
|
|
|
/**
|
|
* is.string
|
|
* Test if `value` is a string.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if 'value' is a string, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.string = function (value) {
|
|
return toStr.call(value) === '[object String]';
|
|
};
|
|
|
|
/**
|
|
* Test base64 string.
|
|
*/
|
|
|
|
/**
|
|
* is.base64
|
|
* Test if `value` is a valid base64 encoded string.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if 'value' is a base64 encoded string, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.base64 = function (value) {
|
|
return is.string(value) && (!value.length || base64Regex.test(value));
|
|
};
|
|
|
|
/**
|
|
* Test base64 string.
|
|
*/
|
|
|
|
/**
|
|
* is.hex
|
|
* Test if `value` is a valid hex encoded string.
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if 'value' is a hex encoded string, false otherwise
|
|
* @api public
|
|
*/
|
|
|
|
is.hex = function (value) {
|
|
return is.string(value) && (!value.length || hexRegex.test(value));
|
|
};
|
|
|
|
/**
|
|
* is.symbol
|
|
* Test if `value` is an ES6 Symbol
|
|
*
|
|
* @param {Mixed} value value to test
|
|
* @return {Boolean} true if `value` is a Symbol, false otherise
|
|
* @api public
|
|
*/
|
|
|
|
is.symbol = function (value) {
|
|
return typeof Symbol === 'function' && toStr.call(value) === '[object Symbol]' && typeof symbolValueOf.call(value) === 'symbol';
|
|
};
|
|
|
|
module.exports = is;
|
|
|
|
|
|
/***/ }
|
|
/******/ ]);
|
|
/*# sourceMappingURL=card.css.map */
|