Allow for Field Validators to handle None values, fixed issue 1183, thanks Joe Barnhart

This commit is contained in:
mdipierro
2012-11-29 22:35:20 -06:00
parent 568c33d7d6
commit d7ace92c04
9 changed files with 27 additions and 13 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ function web2py_event_handlers() {
jQuery(function() {
var flash = jQuery('.flash');
flash.hide();
if(flash.html()) flash.append('<span style="float:right;">&times;</span>').slideDown();
if(flash.html()) flash.append('<span id="closeflash">&times;</span>').slideDown();
web2py_ajax_init(document);
web2py_event_handlers();
});