1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 01:54:00 +02:00

Display login in auth form (regression)

This commit is contained in:
Jakub Vrana
2010-12-01 18:44:17 +01:00
parent ac8ff42689
commit 9bb0fdc91b
6 changed files with 15 additions and 18 deletions

View File

@@ -399,16 +399,3 @@ function schemaMouseup(ev) {
cookie('adminer_schema=' + encodeURIComponent(s.substr(1)), 30, '; path="' + location.pathname + location.search + '"');
}
}
/** Stop event propagation
* @param Event
*/
function eventStop(event) {
if (event.stopPropagation) {
event.stopPropagation();
} else {
event.cancelBubble = true;
}
}