@@ -196,8 +196,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
196
196
components: {
197
197
TheMask: vue_the_mask__WEBPACK_IMPORTED_MODULE_2__.TheMask
198
198
},
199
- /**
200
- * The component's data.
199
+ /**
200
+ * The component's data.
201
201
*/
202
202
data: function data() {
203
203
return {
@@ -223,8 +223,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
223
223
updateEntriesTimer: 2500
224
224
};
225
225
},
226
- /**
227
- * Prepare the component.
226
+ /**
227
+ * Prepare the component.
228
228
*/
229
229
mounted: function mounted() {
230
230
var _this = this;
@@ -240,8 +240,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
240
240
this.updateTimeAgo();
241
241
this.focusOnSearch();
242
242
},
243
- /**
244
- * Clean after the component is destroyed.
243
+ /**
244
+ * Clean after the component is destroyed.
245
245
*/
246
246
destroyed: function destroyed() {
247
247
clearTimeout(this.newEntriesTimeout);
@@ -289,8 +289,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
289
289
}
290
290
});
291
291
},
292
- /**
293
- * Keep checking if there are new entries.
292
+ /**
293
+ * Keep checking if there are new entries.
294
294
*/
295
295
checkForNewEntries: function checkForNewEntries() {
296
296
var _this4 = this;
@@ -313,8 +313,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
313
313
});
314
314
}, this.newEntriesTimer);
315
315
},
316
- /**
317
- * Update the timeago of each entry.
316
+ /**
317
+ * Update the timeago of each entry.
318
318
*/
319
319
updateTimeAgo: function updateTimeAgo() {
320
320
var _this5 = this;
@@ -325,8 +325,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
325
325
_this5.updateTimeAgo();
326
326
}, 60000);
327
327
},
328
- /**
329
- * Search the entries of this type.
328
+ /**
329
+ * Search the entries of this type.
330
330
*/
331
331
search: function search() {
332
332
var _this6 = this;
@@ -344,8 +344,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
344
344
});
345
345
});
346
346
},
347
- /**
348
- * Load more entries.
347
+ /**
348
+ * Load more entries.
349
349
*/
350
350
loadOlderEntries: function loadOlderEntries() {
351
351
var _this7 = this;
@@ -356,8 +356,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
356
356
_this7.loadingMoreEntries = false;
357
357
});
358
358
},
359
- /**
360
- * Load new entries.
359
+ /**
360
+ * Load new entries.
361
361
*/
362
362
loadNewEntries: function loadNewEntries() {
363
363
var _this8 = this;
@@ -372,8 +372,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
372
372
_this8.checkForNewEntries();
373
373
});
374
374
},
375
- /**
376
- * Update the existing entries if needed.
375
+ /**
376
+ * Update the existing entries if needed.
377
377
*/
378
378
updateEntries: function updateEntries() {
379
379
var _this9 = this;
@@ -398,8 +398,8 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
398
398
_this9.updateEntries();
399
399
}, this.updateEntriesTimer);
400
400
},
401
- /**
402
- * Focus on the search input when "/" key is hit.
401
+ /**
402
+ * Focus on the search input when "/" key is hit.
403
403
*/
404
404
focusOnSearch: function focusOnSearch() {
405
405
document.onkeyup = function (event) {
0 commit comments