mirror of
https://github.com/vrana/adminer.git
synced 2025-08-31 01:59:59 +02:00
Move inline event handlers to <script>
This commit is contained in:
@@ -39,3 +39,13 @@ function whisper(url) {
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/** Add new attachment field
|
||||
* @this HTMLInputElement
|
||||
*/
|
||||
function emailFileChange() {
|
||||
this.onchange = function () { };
|
||||
var el = this.cloneNode(true);
|
||||
el.value = '';
|
||||
this.parentNode.appendChild(el);
|
||||
}
|
||||
|
Reference in New Issue
Block a user