From db2c8bb6fba8b0b67b83a80ea0a1c2ee936d6a1f Mon Sep 17 00:00:00 2001 From: James Campos Date: Sun, 5 Jun 2011 17:08:18 -0700 Subject: [PATCH] %a --- 4chan_x.user.js | 1 + script.coffee | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index f7c9308a4..6d898980c 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1671,6 +1671,7 @@ case 'A': case 'D': case 'H': + case 'a': case 'd': case 'i': case 'm': diff --git a/script.coffee b/script.coffee index 5bb30f84a..a294a8470 100644 --- a/script.coffee +++ b/script.coffee @@ -1317,7 +1317,7 @@ time = code = format.replace /%(.)/g, (s, c) -> switch c when '%' then '%' - when 'A', 'D', 'H', 'd', 'i', 'm', 'y' then "' + time.#{c}() + '" + when 'A', 'D', 'H', 'a', 'd', 'i', 'm', 'y' then "' + time.#{c}() + '" else s time.funk = Function 'time', "return '#{code}'"