diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-15 19:16:08 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-15 19:16:08 -0400 |
commit | 8363107a9e3dd3aa4221f6f3185eeed2687c0c79 (patch) | |
tree | 179ff7fc84cf0817ef10e3c31b60f46709f7c6e1 /IkiWiki | |
parent | a695b5b2f8876873e934f8ad3410eb92be3c6fe1 (diff) | |
download | ikiwiki-8363107a9e3dd3aa4221f6f3185eeed2687c0c79.tar ikiwiki-8363107a9e3dd3aa4221f6f3185eeed2687c0c79.tar.gz |
use jquery underlay
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/attachment.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/attachment.pm b/IkiWiki/Plugin/attachment.pm index be30e97b9..8a31beb39 100644 --- a/IkiWiki/Plugin/attachment.pm +++ b/IkiWiki/Plugin/attachment.pm @@ -6,8 +6,9 @@ use strict; use IkiWiki 3.00; sub import { - add_underlay("javascript"); add_underlay("attachment"); + add_underlay("javascript"); + add_underlay("jquery"); hook(type => "getsetup", id => "attachment", call => \&getsetup); hook(type => "checkconfig", id => "attachment", call => \&checkconfig); hook(type => "formbuilder_setup", id => "attachment", call => \&formbuilder_setup); |