log message for port controls

This commit is contained in:
Oliver Gorwits
2013-08-30 23:36:47 +01:00
parent b614669c0c
commit 626c8c3fdd
4 changed files with 76 additions and 17 deletions

View File

@@ -113,4 +113,13 @@
}
});
});
// bootstrap modal mucks about with mouse actions on higher elements
// so need to bury and raise it when needed
$('#ports_pane').on('show', '.nd_modal', function () {
$(this).toggleClass('nd_deep-horizon');
});
$('#ports_pane').on('hidden', '.nd_modal', function () {
$(this).toggleClass('nd_deep-horizon');
});
});