timeago_js 3.0.2.1 → 3.0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/assets/javascripts/timeago.js +2 -7
- data/lib/timeago_js/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d4e90f235127b013e9a40f1e2df0dd510093d33c53a6588230eb3a73abb11bb
|
4
|
+
data.tar.gz: b9ee1463ec0c561ed955a679af64e3e1c919a0e6fb297eee8037e9f689e97672
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf0e322266cdc49902c2b8e163bc810b21684dea4b72f04b9ff4029e00eb9e7800eac9a1171570fe030398f1cdb0552bb2c8b67acc62e31c84b21b14a952a104
|
7
|
+
data.tar.gz: 4f2cb94ed1bc32b81113a8981c83e286cf074c40ead63ee211c3a08c871295a7235679bd6abc6c7866ba2127ec0bd0d66b163507b293554ab1facaff5923b776
|
@@ -6,13 +6,8 @@
|
|
6
6
|
**/
|
7
7
|
/* jshint expr: true */
|
8
8
|
!function (root, factory) {
|
9
|
-
|
10
|
-
|
11
|
-
module.exports['default'] = module.exports; // es6 support
|
12
|
-
}
|
13
|
-
else
|
14
|
-
root.timeago = factory(root);
|
15
|
-
}(typeof window !== 'undefined' ? window : this,
|
9
|
+
root.timeago = factory(root);
|
10
|
+
}(window,
|
16
11
|
function () {
|
17
12
|
var indexMapEn = 'second_minute_hour_day_week_month_year'.split('_'),
|
18
13
|
indexMapZh = '秒_分钟_小时_天_周_月_年'.split('_'),
|
data/lib/timeago_js/version.rb
CHANGED