mirror of
https://github.com/scratchfoundation/jquery-timeago.git
synced 2024-12-11 16:31:08 -05:00
commit
8425e598c3
1 changed files with 11 additions and 2 deletions
|
@ -13,7 +13,16 @@
|
||||||
*
|
*
|
||||||
* Copyright (c) 2008-2013, Ryan McGeary (ryan -[at]- mcgeary [*dot*] org)
|
* Copyright (c) 2008-2013, Ryan McGeary (ryan -[at]- mcgeary [*dot*] org)
|
||||||
*/
|
*/
|
||||||
(function($) {
|
|
||||||
|
(function(factory) {
|
||||||
|
// Add jQuery via AMD registration or browser globals
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
define([ 'jquery' ], factory);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
factory(jQuery);
|
||||||
|
}
|
||||||
|
}(function($) {
|
||||||
$.timeago = function(timestamp) {
|
$.timeago = function(timestamp) {
|
||||||
if (timestamp instanceof Date) {
|
if (timestamp instanceof Date) {
|
||||||
return inWords(timestamp);
|
return inWords(timestamp);
|
||||||
|
@ -150,4 +159,4 @@
|
||||||
// fix for IE6 suckage
|
// fix for IE6 suckage
|
||||||
document.createElement("abbr");
|
document.createElement("abbr");
|
||||||
document.createElement("time");
|
document.createElement("time");
|
||||||
}(jQuery));
|
}));
|
||||||
|
|
Loading…
Reference in a new issue