mirror of https://github.com/gophish/gophish
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
|
$(document).ready(function() {
|
||
|
$(".editable-row").hover(
|
||
|
function() {
|
||
|
alert("test")
|
||
|
$(this).find(".edit-row").removeClass("hidden");
|
||
|
}, function() {
|
||
|
$(this > ".edit-row").addClass("hidden");
|
||
|
}
|
||
|
)
|
||
|
})
|
||
|
|