16 lines
424 B
JavaScript
Executable File
16 lines
424 B
JavaScript
Executable File
/**
|
|
* Booster for WooCommerce - Timepicker JS
|
|
*
|
|
* @version 2.7.0
|
|
* @author Algoritmika Ltd.
|
|
*/
|
|
jQuery(document).ready(function() {
|
|
jQuery("input[display='time']").each( function () {
|
|
jQuery(this).timepicker({
|
|
timeFormat : jQuery(this).attr("timeformat"),
|
|
interval : jQuery(this).attr("interval"),
|
|
minTime: jQuery(this).attr("mintime"),
|
|
maxTime: jQuery(this).attr("maxtime")
|
|
});
|
|
});
|
|
}); |