make hyperlink over all of vlans cell

This commit is contained in:
Oliver Gorwits
2012-08-28 00:37:45 +01:00
parent 58764f04ca
commit e6dd6bab84
2 changed files with 3 additions and 3 deletions

View File

@@ -9,12 +9,12 @@
event.preventDefault(); // prevent jump to top of page
$(this).siblings('.nd_collapsing').toggle('fast');
$(this).siblings('.cell-arrow-up').toggleClass('cell-arrow-down cell-arrow-up');
$(this).text('Hide VLANs');
$(this).html('<div class="cell-arrow-down"></div>Hide VLANs');
}, function() {
event.preventDefault(); // prevent jump to top of page
$(this).siblings('.nd_collapsing').toggle('fast');
$(this).siblings('.cell-arrow-down').toggleClass('cell-arrow-down cell-arrow-up');
$(this).text('Show VLANs');
$(this).html('<div class="cell-arrow-up"></div>Show VLANs');
});
}