Fix spelling of "empty" in disableButtonIfEmptyField function name

This commit is contained in:
Robert Speicher 2012-09-09 05:40:22 -04:00
parent ebd2a5d0ce
commit 1c01536829
5 changed files with 7 additions and 7 deletions

View file

@ -32,7 +32,7 @@ var NoteList = {
$(".submit_note").removeAttr("disabled");
})
disableButtonIfEmtpyField(".note-text", ".submit_note");
disableButtonIfEmptyField(".note-text", ".submit_note");
$(".note-text").live("focus", function(){
$(this).css("height", "80px");
@ -177,6 +177,6 @@ var PerLineNotes = {
form.show();
return false;
});
disableButtonIfEmtpyField(".line-note-text", ".submit_inline_note");
disableButtonIfEmptyField(".line-note-text", ".submit_inline_note");
}
}