diff options
Diffstat (limited to 'resources/lib/moment/locale/he.js')
-rw-r--r-- | resources/lib/moment/locale/he.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/lib/moment/locale/he.js b/resources/lib/moment/locale/he.js index 06f954f4..9f9f4705 100644 --- a/resources/lib/moment/locale/he.js +++ b/resources/lib/moment/locale/he.js @@ -10,7 +10,7 @@ } else if (typeof exports === 'object') { module.exports = factory(require('../moment')); // Node } else { - factory(window.moment); // Browser global + factory((typeof global !== 'undefined' ? global : this).moment); // node or other global } }(function (moment) { return moment.defineLocale('he', { @@ -21,6 +21,7 @@ weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'), longDateFormat : { LT : 'HH:mm', + LTS : 'LT:ss', L : 'DD/MM/YYYY', LL : 'D [ב]MMMM YYYY', LLL : 'D [ב]MMMM YYYY LT', |