You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
362 B
11 lines
362 B
(function ($) {
|
|
var uarr = String.fromCharCode(0x25b6),
|
|
darr = String.fromCharCode(0x25bc);
|
|
|
|
$('a.djTemplateShowContext').on('click', function() {
|
|
var arrow = $(this).children('.toggleArrow');
|
|
arrow.html(arrow.html() == uarr ? darr : uarr);
|
|
$(this).parent().next().toggle();
|
|
return false;
|
|
});
|
|
})(djdt.jQuery);
|
|
|