Stop some ui elements from clearing url anchor when clicked

This commit is contained in:
Nick O'Leary
2017-03-06 15:30:42 +00:00
parent 7698990e37
commit 1ff23ebfd9
2 changed files with 5 additions and 1 deletions

View File

@@ -231,6 +231,7 @@ RED.tabs = (function() {
closeLink.append('<i class="fa fa-times" />');
closeLink.on("click",function(event) {
event.preventDefault();
removeTab(tab.id);
});
}