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.
31 lines
602 B
31 lines
602 B
10 years ago
|
$(function(){
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
// sensible defaults
|
||
|
$("#shop_date").mask("0000-00-00", {placeholder: "yyyy-mm-dd" });
|
||
|
|
||
|
|
||
|
// error handler for shops with a popup dialog
|
||
|
function error_handler(input,error_span,error,error_text,event) {
|
||
|
var trans_error = 0;
|
||
|
if ( input == error ) {
|
||
|
if ( !error_span.is(":visible") ) {
|
||
|
error_span.show();
|
||
|
}
|
||
|
error_span.html(error_text);
|
||
|
trans_error = 1;
|
||
|
} else {
|
||
|
trans_error = 0;
|
||
|
error_span.hide();
|
||
|
}
|
||
|
|
||
|
if (trans_error) {
|
||
|
event.preventDefault();
|
||
|
}
|
||
|
|
||
|
return trans_error;
|
||
|
|
||
|
} // end error_handling function
|
||
|
|
||
|
});
|