summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/static/details.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/static/details.js b/install/static/details.js
index a989d9d4e..f549e6a4c 100644
--- a/install/static/details.js
+++ b/install/static/details.js
@@ -428,7 +428,7 @@ function ipa_button(spec) {
});
if (spec.click) button.click(spec.click);
- if (spec.class) button.addClass(spec.class);
+ if (spec['class']) button.addClass(spec['class']);
if (spec.icon) button.append('<span class="ui-icon '+spec.icon+'" ></span> ');
return button;