mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 02:26:19 +00:00
16 lines
422 B
JavaScript
Executable File
16 lines
422 B
JavaScript
Executable File
/*
|
|
jquery.tw.macro.today.js
|
|
jQuery TiddlyWiki <<today>> macro
|
|
*/
|
|
(function($) {
|
|
$.fn.tw_today = function(args) {
|
|
args.format = args.format || args[1];
|
|
var opts = $.extend({},$.fn.tw_today.defaults,args);
|
|
var now = new Date();
|
|
var text = now.formatString(opts.format.trim());
|
|
this.append("<span>"+text+"</span>");
|
|
return this;
|
|
};
|
|
$.fn.tw_today.defaults = {format:"ddd mmm 0DD 0hh:0mm:0ss YYYY"};
|
|
})(jQuery);
|