You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
19 lines
386 B
1 year ago
|
$(function () {
|
||
|
"use strict";
|
||
|
|
||
|
// Default
|
||
|
$(".repeater-default").repeater();
|
||
|
|
||
|
// Custom Show / Hide Configurations
|
||
|
$(".file-repeater, .email-repeater").repeater({
|
||
|
show: function () {
|
||
|
$(this).slideDown();
|
||
|
},
|
||
|
hide: function (remove) {
|
||
|
if (confirm("Are you sure you want to remove this item?")) {
|
||
|
$(this).slideUp(remove);
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
});
|