diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-03-27 11:52:59 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-03-27 11:52:59 +0100 |
commit | b59e2870ab47dab424d043dd51f70d427d92d7a5 (patch) | |
tree | 8b35bb51d3f6132750a20a70289006b121840c01 /view/theme/redbasic/js | |
parent | 1bf93916dbf22ba8e51261c5f364781ee3c9bcc2 (diff) | |
download | volse-hubzilla-b59e2870ab47dab424d043dd51f70d427d92d7a5.tar.gz volse-hubzilla-b59e2870ab47dab424d043dd51f70d427d92d7a5.tar.bz2 volse-hubzilla-b59e2870ab47dab424d043dd51f70d427d92d7a5.zip |
Move bootstrap dependencies (tagsinput) to theme redbasic (we only have it there). Comment out some most probably deprecated js includes. Some css cleanup.
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index c825b0485..68190778c 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -34,6 +34,10 @@ $(document).ready(function() { if($('#tabs-collapse-1').length === 0) { $('#expand-tabs').hide(); } + + $("input[data-role=cat-tagsinput]").tagsinput({ + tagClass: 'label label-primary' + }); }); $(document).ready(function(){ @@ -48,4 +52,4 @@ $(document).ready(function(){ } } setInterval(function () {checkNotify();}, 10 * 1000); -});
\ No newline at end of file +}); |