Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (8aa300c...1d4541f)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Jun 9, 2017
1 parent 1d4541f commit 862b936
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 11 deletions.
16 changes: 13 additions & 3 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -76076,7 +76076,7 @@ _dereq_('./core/a-mixin');
_dereq_('./extras/components/');
_dereq_('./extras/primitives/');

console.log('A-Frame Version: 0.5.0 (Date 09-06-2017, Commit #c61620f)');
console.log('A-Frame Version: 0.5.0 (Date 09-06-2017, Commit #1d4541f)');
console.log('three Version:', pkg.dependencies['three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

Expand Down Expand Up @@ -77589,7 +77589,11 @@ module.exports = function bind (fn, ctx/* , arg1, arg2 */) {

},{}],193:[function(_dereq_,module,exports){
/* global THREE */
var debug = _dereq_('./debug');
var extend = _dereq_('object-assign');

var warn = debug('utils:coordinates:warn');

// Coordinate string regex. Handles negative, positive, and decimals.
var regex = /^\s*((-?\d*\.{0,1}\d+(e-?\d+)?)\s+){2,3}(-?\d*\.{0,1}\d+(e-?\d+)?)\s*$/;
module.exports.regex = regex;
Expand Down Expand Up @@ -77644,8 +77648,14 @@ module.exports.stringify = stringify;
/**
* @returns {bool}
*/
module.exports.isCoordinates = function (value) {
function isCoordinates (value) {
return regex.test(value);
}
module.exports.isCoordinates = isCoordinates;

module.exports.isCoordinate = function (value) {
warn('`AFRAME.utils.isCoordinate` has been renamed to `AFRAME.utils.isCoordinates`');
return isCoordinates(value);
};

function vecParseFloat (vec) {
Expand All @@ -77666,7 +77676,7 @@ module.exports.toVector3 = function (vec3) {
return new THREE.Vector3(vec3.x, vec3.y, vec3.z);
};

},{"object-assign":25}],194:[function(_dereq_,module,exports){
},{"./debug":194,"object-assign":25}],194:[function(_dereq_,module,exports){
(function (process){
var debugLib = _dereq_('debug');
var extend = _dereq_('object-assign');
Expand Down
6 changes: 3 additions & 3 deletions dist/aframe-master.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/aframe-master.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/aframe-master.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ require('./core/a-mixin');
require('./extras/components/');
require('./extras/primitives/');

console.log('A-Frame Version: 0.5.0 (Date 09-06-2017, Commit #c61620f)');
console.log('A-Frame Version: 0.5.0 (Date 09-06-2017, Commit #1d4541f)');
console.log('three Version:', pkg.dependencies['three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

Expand Down

0 comments on commit 862b936

Please sign in to comment.