Skip to content

Commit

Permalink
fixed: some small issues like forgotten semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
fnagel committed Jan 29, 2010
2 parents 3b23494 + 4540c30 commit 6fd37b7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Formular/js/ui.formValidator.js
Expand Up @@ -312,7 +312,8 @@ $.widget("ui.formValidator", {
_showErrors: function(submitted){
var options = this.options, self = this;
var isError, addError, removeError = false;
var msgs = msg = "";
var msgs = "";
var msg = "";

// get error array
var errors = options.errorsArray;
Expand Down Expand Up @@ -390,7 +391,7 @@ $.widget("ui.formValidator", {
if (addError || removeError) aria += '"';

// build up HTML | no content if no error is found
var html = "\n"
var html = "\n";
if (isError) {
html += ' <div'+aria+' class="info ui-state-highlight ui-state ui-corner-all">'+"\n";
html += ' <p id="ui-error-title">'+"\n";
Expand Down Expand Up @@ -514,7 +515,7 @@ $.widget("ui.formValidator", {
}

//build up HTML
var html = "\n"
var html = "\n";
html += ' <div id="ui-formular-success">'+"\n";
html += ' <div aria-live="assertive" class="info ui-state-highlight ui-state ui-corner-all">'+"\n";
html += ' <p>'+"\n";
Expand Down

0 comments on commit 6fd37b7

Please sign in to comment.