relationships.js (410B)
1 $(function() { 2 var pgurl = window.location.href.substr(window.location.href.lastIndexOf("/")+1); 3 $("#navbar-collapse ul li a").each(function(){ 4 if($(this).attr("href") == pgurl || $(this).attr("href") == '' ) 5 $(this).parent().addClass("active"); 6 }) 7 }); 8 9 $(function() { 10 var $imgs = $('img.diagram, object.diagram'); 11 $imgs.css("cursor", "move") 12 $imgs.draggable(); 13 });