9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
/* Active Admin JS */
|
|
$(function(){
|
|
$(".datepicker").datepicker({dateFormat: 'yy-mm-dd'});
|
|
|
|
$(".clear_filters_btn").click(function(){
|
|
window.location.search = "";
|
|
return false;
|
|
});
|
|
});
|