Development of an internal social media platform with personalised dashboards for students
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.

toolbar.template.js 362B

1234567891011
  1. (function ($) {
  2. var uarr = String.fromCharCode(0x25b6),
  3. darr = String.fromCharCode(0x25bc);
  4. $('a.djTemplateShowContext').on('click', function() {
  5. var arrow = $(this).children('.toggleArrow');
  6. arrow.html(arrow.html() == uarr ? darr : uarr);
  7. $(this).parent().next().toggle();
  8. return false;
  9. });
  10. })(djdt.jQuery);