...
|
...
|
@@ -103,15 +103,15 @@ $('.dropdown-menu').on('mouseenter', function() { |
|
|
$(this).hide();
|
|
|
});
|
|
|
|
|
|
$(document).on("click",".btn",function(){
|
|
|
var $this=$(this);
|
|
|
if(!$this.is(":file")){
|
|
|
$this.prop("disabled",true);
|
|
|
setTimeout(function(){
|
|
|
$this.prop("disabled",false)
|
|
|
},2000);
|
|
|
}
|
|
|
});
|
|
|
// $(document).on("click",".btn",function(){
|
|
|
// var $this=$(this);
|
|
|
// if(!$this.is(":file")){
|
|
|
// $this.prop("disabled",true);
|
|
|
// setTimeout(function(){
|
|
|
// $this.prop("disabled",false)
|
|
|
// },2000);
|
|
|
// }
|
|
|
// });
|
|
|
|
|
|
$(document).on("keyup change","input[type='number']",function(){
|
|
|
$(this).val($(this).val().replace(/[^0-9]/g, ''));
|
...
|
...
|
|