Skip to content
Snippets Groups Projects
Commit e5a968c4 authored by Mike Greiling's avatar Mike Greiling
Browse files

move timeago.js to vendor directory

parent 536ec509
No related branches found
No related tags found
No related merge requests found
Loading
@@ -19,6 +19,7 @@
Loading
@@ -19,6 +19,7 @@
/*= require jquery.scrollTo */ /*= require jquery.scrollTo */
/*= require jquery.turbolinks */ /*= require jquery.turbolinks */
/*= require js.cookie */ /*= require js.cookie */
/*= require timeago */
/*= require turbolinks */ /*= require turbolinks */
/*= require autosave */ /*= require autosave */
/*= require bootstrap/affix */ /*= require bootstrap/affix */
Loading
Loading
/* eslint-disable no-unused-expressions, wrap-iife, func-names, curly, no-param-reassign, no-trailing-spaces, prefer-arrow-callback, no-var, one-var, quote-props, space-before-function-paren, vars-on-top, radix, prefer-template, space-infix-ops, no-use-before-define, newline-per-chained-call, no-useless-escape, no-nested-ternary, indent, no-undef, no-plusplus, one-var-declaration-per-line, operator-assignment, consistent-return, keyword-spacing, max-len, space-unary-ops, no-shadow, no-restricted-syntax, guard-for-in, eol-last, max-len */
/** /**
* Copyright (c) 2016 hustcc * Copyright (c) 2016 hustcc
* License: MIT * License: MIT
Loading
@@ -14,7 +12,7 @@
Loading
@@ -14,7 +12,7 @@
module.exports = factory(root); module.exports = factory(root);
else else
root.timeago = factory(root); root.timeago = factory(root);
}(typeof window !== 'undefined' ? window : this, }(typeof window !== 'undefined' ? window : this,
function () { function () {
var cnt = 0, // the timer counter, for timer key var cnt = 0, // the timer counter, for timer key
indexMapEn = 'second_minute_hour_day_week_month_year'.split('_'), indexMapEn = 'second_minute_hour_day_week_month_year'.split('_'),
Loading
@@ -32,7 +30,7 @@ function () {
Loading
@@ -32,7 +30,7 @@ function () {
SEC_ARRAY = [60, 60, 24, 7, 365/7/12, 12], SEC_ARRAY = [60, 60, 24, 7, 365/7/12, 12],
SEC_ARRAY_LEN = 6, SEC_ARRAY_LEN = 6,
ATTR_DATETIME = 'datetime'; ATTR_DATETIME = 'datetime';
// format Date / string / timestamp to Date instance. // format Date / string / timestamp to Date instance.
function toDate(input) { function toDate(input) {
if (input instanceof Date) return input; if (input instanceof Date) return input;
Loading
@@ -236,4 +234,4 @@ function () {
Loading
@@ -236,4 +234,4 @@ function () {
}; };
   
return timeagoFactory; return timeagoFactory;
}); });
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment