Skip to content

Commit

Permalink
Merge pull request #2 from dvdheiden/patch-2
Browse files Browse the repository at this point in the history
same button class option as the original jQuery dialog.
  • Loading branch information
newghost committed May 15, 2014
2 parents d6f7ae2 + 23b9705 commit 4165d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require:
if (btnObj.constructor == Object) {
id = btnObj.id;
text = btnObj.text;
classed = btnObj.classed || classed;
classed = btnObj['class'] || btnObj.classed || classed;
click = btnObj.click;
}

Expand Down

0 comments on commit 4165d2d

Please sign in to comment.