Fixed incorrect url on bootstrap fonts.

Fixed missing static files in repo
This commit is contained in:
tomtom5152
2015-01-30 13:47:56 +00:00
parent 20264f570a
commit b527a3faa9
27 changed files with 12001 additions and 11985 deletions

View File

@@ -0,0 +1,11 @@
(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);