betterplace_explorer 0.0.1.pre.alpha6 → 0.0.1.pre.alpha7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7d0dcbcf2a2c6b11cec16b6987e36113ee7d9ef
4
- data.tar.gz: 13a70d7bff52d11915b0f6ecc91387fb1b71137e
3
+ metadata.gz: ecc79d93012fbb4c29a86fa614e83a7c6b5996d1
4
+ data.tar.gz: d2de7ee04fb462b797ca9b18759b33059df657e1
5
5
  SHA512:
6
- metadata.gz: b6b98f88a8abc4ebe509e78801eb198591511007d726b67287de06317ce5909aa50c65abe6cd1c3dd61d006fb9a97b887f8d7eefd8924cc7374e48a4d18201a8
7
- data.tar.gz: 8d9e51b44e228b0ae81e7fee28d86303c4ebd1048a04e734b29dcfbcbee4edb7cb6fdb29873bff21b551dbe0b3b5594d14c65836546e723c4454369c3339c26c
6
+ metadata.gz: 7cabc03d8bb99eeb32d726ef2b0bf4950f62770261b38c07cbf67fe39ccd3fe94bc5779e0aaf48c2941abdda648394386ee064669b0f848416503b3886f62da0
7
+ data.tar.gz: bc8bb35b6d855b7ce0cc3ac3705f73a96336654e67be3dd9a60c1089c43b040d6e6f6f1260ad4a5be0e2cad983a15f9148889fea1b9d7a95253be81411cab965
@@ -343,31 +343,6 @@
343
343
  // shim for using process in browser
344
344
 
345
345
  var process = module.exports = {};
346
-
347
- // cached from whatever global is present so that test runners that stub it
348
- // don't break things. But we need to wrap it in a try catch in case it is
349
- // wrapped in strict mode code which doesn't define any globals. It's inside a
350
- // function because try/catches deoptimize in certain engines.
351
-
352
- var cachedSetTimeout;
353
- var cachedClearTimeout;
354
-
355
- (function () {
356
- try {
357
- cachedSetTimeout = setTimeout;
358
- } catch (e) {
359
- cachedSetTimeout = function () {
360
- throw new Error('setTimeout is not defined');
361
- }
362
- }
363
- try {
364
- cachedClearTimeout = clearTimeout;
365
- } catch (e) {
366
- cachedClearTimeout = function () {
367
- throw new Error('clearTimeout is not defined');
368
- }
369
- }
370
- } ())
371
346
  var queue = [];
372
347
  var draining = false;
373
348
  var currentQueue;
@@ -392,7 +367,7 @@
392
367
  if (draining) {
393
368
  return;
394
369
  }
395
- var timeout = cachedSetTimeout(cleanUpNextTick);
370
+ var timeout = setTimeout(cleanUpNextTick);
396
371
  draining = true;
397
372
 
398
373
  var len = queue.length;
@@ -409,7 +384,7 @@
409
384
  }
410
385
  currentQueue = null;
411
386
  draining = false;
412
- cachedClearTimeout(timeout);
387
+ clearTimeout(timeout);
413
388
  }
414
389
 
415
390
  process.nextTick = function (fun) {
@@ -421,7 +396,7 @@
421
396
  }
422
397
  queue.push(new Item(fun, args));
423
398
  if (queue.length === 1 && !draining) {
424
- cachedSetTimeout(drainQueue, 0);
399
+ setTimeout(drainQueue, 0);
425
400
  }
426
401
  };
427
402
 
@@ -1309,7 +1284,7 @@
1309
1284
  var warning = emptyFunction;
1310
1285
 
1311
1286
  if (process.env.NODE_ENV !== 'production') {
1312
- warning = function warning(condition, format) {
1287
+ warning = function (condition, format) {
1313
1288
  for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
1314
1289
  args[_key - 2] = arguments[_key];
1315
1290
  }
@@ -1357,7 +1332,6 @@
1357
1332
  * LICENSE file in the root directory of this source tree. An additional grant
1358
1333
  * of patent rights can be found in the PATENTS file in the same directory.
1359
1334
  *
1360
- *
1361
1335
  */
1362
1336
 
1363
1337
  function makeEmptyFunction(arg) {
@@ -1371,7 +1345,7 @@
1371
1345
  * primarily useful idiomatically for overridable function endpoints which
1372
1346
  * always need to be callable, since JS lacks a null-call idiom ala Cocoa.
1373
1347
  */
1374
- var emptyFunction = function emptyFunction() {};
1348
+ function emptyFunction() {}
1375
1349
 
1376
1350
  emptyFunction.thatReturns = makeEmptyFunction;
1377
1351
  emptyFunction.thatReturnsFalse = makeEmptyFunction(false);
@@ -2260,11 +2234,11 @@
2260
2234
  * because of Facebook's testing infrastructure.
2261
2235
  */
2262
2236
  if (performance.now) {
2263
- performanceNow = function performanceNow() {
2237
+ performanceNow = function () {
2264
2238
  return performance.now();
2265
2239
  };
2266
2240
  } else {
2267
- performanceNow = function performanceNow() {
2241
+ performanceNow = function () {
2268
2242
  return Date.now();
2269
2243
  };
2270
2244
  }
@@ -3352,7 +3326,7 @@
3352
3326
  * @param {object} obj
3353
3327
  * @return {object}
3354
3328
  */
3355
- var keyMirror = function keyMirror(obj) {
3329
+ var keyMirror = function (obj) {
3356
3330
  var ret = {};
3357
3331
  var key;
3358
3332
  !(obj instanceof Object && !Array.isArray(obj)) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'keyMirror(...): Argument must be an object.') : invariant(false) : void 0;
@@ -3424,7 +3398,7 @@
3424
3398
  * 'xa12' in that case. Resolve keys you want to use once at startup time, then
3425
3399
  * reuse those resolutions.
3426
3400
  */
3427
- var keyOf = function keyOf(oneKeyObj) {
3401
+ var keyOf = function (oneKeyObj) {
3428
3402
  var key;
3429
3403
  for (key in oneKeyObj) {
3430
3404
  if (!oneKeyObj.hasOwnProperty(key)) {
@@ -8558,11 +8532,11 @@
8558
8532
  arity: true
8559
8533
  };
8560
8534
 
8561
- module.exports = function hoistNonReactStatics(targetComponent, sourceComponent, customStatics) {
8535
+ module.exports = function hoistNonReactStatics(targetComponent, sourceComponent) {
8562
8536
  if (typeof sourceComponent !== 'string') { // don't hoist over string (html) components
8563
8537
  var keys = Object.getOwnPropertyNames(sourceComponent);
8564
- for (var i = 0; i < keys.length; ++i) {
8565
- if (!REACT_STATICS[keys[i]] && !KNOWN_STATICS[keys[i]] && (!customStatics || !customStatics[keys[i]])) {
8538
+ for (var i=0; i<keys.length; ++i) {
8539
+ if (!REACT_STATICS[keys[i]] && !KNOWN_STATICS[keys[i]]) {
8566
8540
  try {
8567
8541
  targetComponent[keys[i]] = sourceComponent[keys[i]];
8568
8542
  } catch (error) {
@@ -9737,11 +9711,7 @@
9737
9711
  var useRefresh = !isSupported || forceRefresh;
9738
9712
 
9739
9713
  function getCurrentLocation(historyState) {
9740
- try {
9741
- historyState = historyState || window.history.state || {};
9742
- } catch (e) {
9743
- historyState = {};
9744
- }
9714
+ historyState = historyState || window.history.state || {};
9745
9715
 
9746
9716
  var path = _DOMUtils.getWindowPath();
9747
9717
  var _historyState = historyState;
@@ -17425,7 +17395,6 @@
17425
17395
  * LICENSE file in the root directory of this source tree. An additional grant
17426
17396
  * of patent rights can be found in the PATENTS file in the same directory.
17427
17397
  *
17428
- *
17429
17398
  * @typechecks static-only
17430
17399
  */
17431
17400
 
@@ -17433,6 +17402,9 @@
17433
17402
 
17434
17403
  /**
17435
17404
  * Memoizes the return value of a function that accepts one string argument.
17405
+ *
17406
+ * @param {function} callback
17407
+ * @return {function}
17436
17408
  */
17437
17409
 
17438
17410
  function memoizeStringOnly(callback) {
@@ -22677,18 +22649,18 @@
22677
22649
  * @param {function} callback Callback function.
22678
22650
  * @return {object} Object with a `remove` method.
22679
22651
  */
22680
- listen: function listen(target, eventType, callback) {
22652
+ listen: function (target, eventType, callback) {
22681
22653
  if (target.addEventListener) {
22682
22654
  target.addEventListener(eventType, callback, false);
22683
22655
  return {
22684
- remove: function remove() {
22656
+ remove: function () {
22685
22657
  target.removeEventListener(eventType, callback, false);
22686
22658
  }
22687
22659
  };
22688
22660
  } else if (target.attachEvent) {
22689
22661
  target.attachEvent('on' + eventType, callback);
22690
22662
  return {
22691
- remove: function remove() {
22663
+ remove: function () {
22692
22664
  target.detachEvent('on' + eventType, callback);
22693
22665
  }
22694
22666
  };
@@ -22703,11 +22675,11 @@
22703
22675
  * @param {function} callback Callback function.
22704
22676
  * @return {object} Object with a `remove` method.
22705
22677
  */
22706
- capture: function capture(target, eventType, callback) {
22678
+ capture: function (target, eventType, callback) {
22707
22679
  if (target.addEventListener) {
22708
22680
  target.addEventListener(eventType, callback, true);
22709
22681
  return {
22710
- remove: function remove() {
22682
+ remove: function () {
22711
22683
  target.removeEventListener(eventType, callback, true);
22712
22684
  }
22713
22685
  };
@@ -22721,7 +22693,7 @@
22721
22693
  }
22722
22694
  },
22723
22695
 
22724
- registerDefault: function registerDefault() {}
22696
+ registerDefault: function () {}
22725
22697
  };
22726
22698
 
22727
22699
  module.exports = EventListener;
@@ -23417,7 +23389,7 @@
23417
23389
  * LICENSE file in the root directory of this source tree. An additional grant
23418
23390
  * of patent rights can be found in the PATENTS file in the same directory.
23419
23391
  *
23420
- *
23392
+ * @typechecks
23421
23393
  */
23422
23394
 
23423
23395
  var isTextNode = __webpack_require__(205);
@@ -23426,6 +23398,10 @@
23426
23398
 
23427
23399
  /**
23428
23400
  * Checks if a given DOM node contains or is another DOM node.
23401
+ *
23402
+ * @param {?DOMNode} outerNode Outer DOM node.
23403
+ * @param {?DOMNode} innerNode Inner DOM node.
23404
+ * @return {boolean} True if `outerNode` contains or is `innerNode`.
23429
23405
  */
23430
23406
  function containsNode(outerNode, innerNode) {
23431
23407
  if (!outerNode || !innerNode) {
@@ -23436,7 +23412,7 @@
23436
23412
  return false;
23437
23413
  } else if (isTextNode(innerNode)) {
23438
23414
  return containsNode(outerNode, innerNode.parentNode);
23439
- } else if ('contains' in outerNode) {
23415
+ } else if (outerNode.contains) {
23440
23416
  return outerNode.contains(innerNode);
23441
23417
  } else if (outerNode.compareDocumentPosition) {
23442
23418
  return !!(outerNode.compareDocumentPosition(innerNode) & 16);
@@ -26175,10 +26151,14 @@
26175
26151
  currentPage: this.props.currentPage,
26176
26152
  handleClick: this.previousPage
26177
26153
  }),
26178
- 'Seite ',
26179
- this.props.currentPage,
26180
- ' von ',
26181
- this.props.totalPages,
26154
+ _react2['default'].createElement(
26155
+ 'li',
26156
+ { className: 'text-muted' },
26157
+ 'Seite ',
26158
+ this.props.currentPage,
26159
+ ' von ',
26160
+ this.props.totalPages
26161
+ ),
26182
26162
  _react2['default'].createElement(_PaginationNextButton2['default'], {
26183
26163
  currentPage: this.props.currentPage,
26184
26164
  handleClick: this.nextPage,
@@ -26633,7 +26613,7 @@
26633
26613
  _createClass(GoogleMapLoader, [{
26634
26614
  key: "mountGoogleMap",
26635
26615
  value: function mountGoogleMap(domEl) {
26636
- if (this.state.map || domEl === null) {
26616
+ if (this.state.map) {
26637
26617
  return;
26638
26618
  }
26639
26619
  var _props$googleMapElement$props = this.props.googleMapElement.props;
@@ -29558,21 +29538,6 @@
29558
29538
  }
29559
29539
  };
29560
29540
 
29561
- // If we're inside a MarkerClusterer, allow ourselves to be clustered
29562
- if (overlayViewProps.anchorHolderRef) {
29563
- if ("MarkerClusterer" === overlayViewProps.anchorHolderRef.getAnchorType()) {
29564
- overlayView.getDraggable = function getDraggable() {
29565
- return !!overlayViewProps.draggable;
29566
- };
29567
-
29568
- overlayView.getPosition = function getPosition() {
29569
- return new google.maps.LatLng(this.position);
29570
- };
29571
-
29572
- overlayViewProps.anchorHolderRef.getAnchor().addMarker(overlayView);
29573
- }
29574
- }
29575
-
29576
29541
  return overlayView;
29577
29542
  }
29578
29543
  }, {
@@ -1,2 +1,3 @@
1
1
  .bpe--pagination
2
- background: #E7E7E7
2
+ li.text-muted
3
+ line-height: 32px
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: betterplace_explorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.alpha6
4
+ version: 0.0.1.pre.alpha7
5
5
  platform: ruby
6
6
  authors:
7
7
  - betterplace developers
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
46
  version: 1.3.1
47
47
  requirements: []
48
48
  rubyforge_project:
49
- rubygems_version: 2.5.1
49
+ rubygems_version: 2.6.4
50
50
  signing_key:
51
51
  specification_version: 4
52
52
  summary: An awesome explorer