81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| (function() {
 | |
|   (function(w) {
 | |
|     var base;
 | |
|     if (w.gl == null) {
 | |
|       w.gl = {};
 | |
|     }
 | |
|     if ((base = w.gl).utils == null) {
 | |
|       base.utils = {};
 | |
|     }
 | |
|     w.gl.utils.days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
 | |
| 
 | |
|     w.gl.utils.formatDate = function(datetime) {
 | |
|       return dateFormat(datetime, 'mmm d, yyyy h:MMtt Z');
 | |
|     };
 | |
| 
 | |
|     w.gl.utils.getDayName = function(date) {
 | |
|       return this.days[date.getDay()];
 | |
|     };
 | |
| 
 | |
|     w.gl.utils.localTimeAgo = function($timeagoEls, setTimeago) {
 | |
|       if (setTimeago == null) {
 | |
|         setTimeago = true;
 | |
|       }
 | |
|       $timeagoEls.each(function() {
 | |
|         var $el;
 | |
|         $el = $(this);
 | |
|         return $el.attr('title', gl.utils.formatDate($el.attr('datetime')));
 | |
|       });
 | |
|       if (setTimeago) {
 | |
|         $timeagoEls.timeago();
 | |
|         $timeagoEls.tooltip('destroy');
 | |
|         return $timeagoEls.tooltip({
 | |
|           template: '<div class="tooltip local-timeago" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
 | |
|         });
 | |
|       }
 | |
|     };
 | |
| 
 | |
|     w.gl.utils.shortTimeAgo = function($el) {
 | |
|       var shortLocale, tmpLocale;
 | |
|       shortLocale = {
 | |
|         prefixAgo: null,
 | |
|         prefixFromNow: null,
 | |
|         suffixAgo: 'ago',
 | |
|         suffixFromNow: 'from now',
 | |
|         seconds: '1 min',
 | |
|         minute: '1 min',
 | |
|         minutes: '%d mins',
 | |
|         hour: '1 hr',
 | |
|         hours: '%d hrs',
 | |
|         day: '1 day',
 | |
|         days: '%d days',
 | |
|         month: '1 month',
 | |
|         months: '%d months',
 | |
|         year: '1 year',
 | |
|         years: '%d years',
 | |
|         wordSeparator: ' ',
 | |
|         numbers: []
 | |
|       };
 | |
|       tmpLocale = $.timeago.settings.strings;
 | |
|       $el.each(function(el) {
 | |
|         var $el1;
 | |
|         $el1 = $(this);
 | |
|         return $el1.attr('title', gl.utils.formatDate($el.attr('datetime')));
 | |
|       });
 | |
|       $.timeago.settings.strings = shortLocale;
 | |
|       $el.timeago();
 | |
|       $.timeago.settings.strings = tmpLocale;
 | |
|     };
 | |
| 
 | |
|     w.gl.utils.getDayDifference = function(a, b) {
 | |
|       var millisecondsPerDay = 1000 * 60 * 60 * 24;
 | |
|       var date1 = Date.UTC(a.getFullYear(), a.getMonth(), a.getDate());
 | |
|       var date2 = Date.UTC(b.getFullYear(), b.getMonth(), b.getDate());
 | |
| 
 | |
|       return Math.floor((date2 - date1) / millisecondsPerDay);
 | |
|     }
 | |
| 
 | |
|   })(window);
 | |
| 
 | |
| }).call(this);
 |