aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/include/tag_selection.inc.tpl
blob: 6098dc2a0fbabac943f0226f5d6c018605db7b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{literal}
<script>
$(document).ready(function(){
  $(".tagSelection label").click(function () {
    var parent = $(this).parent('li');
    var checkbox = $(this).children("input[type=checkbox]");

    if ($(checkbox).is(':checked')) {
       $(parent).addClass("tagSelected"); 
    }
    else {
       $(parent).removeClass('tagSelected'); 
    }
  });
});
</script>
{/literal}