Skip to content

Commit

Permalink
Merge pull request pickhardt#50 from wwerner/master
Browse files Browse the repository at this point in the history
Fix for character entities in button captions (such as umlauts).
  • Loading branch information
Jeff Pickhardt committed Mar 2, 2012
2 parents a039d80 + 4d9ace9 commit 4709299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guiders-1.2.3.js
Expand Up @@ -75,7 +75,7 @@ var guiders = (function($) {
var thisButton = myGuider.buttons[i];
var thisButtonElem = $("<a></a>", {
"class" : "guider_button",
"text" : thisButton.name });
"html" : thisButton.name });
if (typeof thisButton.classString !== "undefined" && thisButton.classString !== null) {
thisButtonElem.addClass(thisButton.classString);
}
Expand Down

0 comments on commit 4709299

Please sign in to comment.