20 lines
437 B
JavaScript
20 lines
437 B
JavaScript
$(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);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
}); |