123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- export var int = function int(number) {
- if (number === '') {
- return 0;
- }
- return parseInt(number, 10);
- };
- export var innerWidth = function innerWidth(node) {
- var width = node.clientWidth;
- var computedStyle = node.style;
- width -= int(computedStyle.paddingLeft);
- width -= int(computedStyle.paddingRight);
- return width;
- };
- export var outerWidth = function outerWidth(node) {
- var width = node.clientWidth;
- var computedStyle = node.style;
- width += int(computedStyle.borderLeftWidth);
- width += int(computedStyle.borderRightWidth);
- return width;
- };
- export var innerHeight = function innerHeight(node) {
- var height = node.clientHeight;
- var computedStyle = node.style;
- height -= int(computedStyle.paddingTop);
- height -= int(computedStyle.paddingBottom);
- return height;
- };
- export var outerHeight = function outerHeight(node) {
- var height = node.clientHeight;
- var computedStyle = node.style;
- height += int(computedStyle.borderTopWidth);
- height += int(computedStyle.borderBottomWidth);
- return height;
- };
- export var parseBounds = function parseBounds(bounds) {
- return {
- left: bounds.left,
- top: bounds.top,
- right: bounds.right,
- bottom: bounds.bottom
- };
- };
- export var isNumber = function isNumber(things) {
- return typeof things === 'number' ? true : false;
- };
- ;
- var _temp = function () {
- if (typeof __REACT_HOT_LOADER__ === 'undefined') {
- return;
- }
- __REACT_HOT_LOADER__.register(int, 'int', 'app/src/utils.js');
- __REACT_HOT_LOADER__.register(innerWidth, 'innerWidth', 'app/src/utils.js');
- __REACT_HOT_LOADER__.register(outerWidth, 'outerWidth', 'app/src/utils.js');
- __REACT_HOT_LOADER__.register(innerHeight, 'innerHeight', 'app/src/utils.js');
- __REACT_HOT_LOADER__.register(outerHeight, 'outerHeight', 'app/src/utils.js');
- __REACT_HOT_LOADER__.register(parseBounds, 'parseBounds', 'app/src/utils.js');
- __REACT_HOT_LOADER__.register(isNumber, 'isNumber', 'app/src/utils.js');
- }();
- ;
|