summaryrefslogtreecommitdiffstats
path: root/install/ui/ipa.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/ipa.js')
-rw-r--r--install/ui/ipa.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/install/ui/ipa.js b/install/ui/ipa.js
index c0aa98b9..4dd627ff 100644
--- a/install/ui/ipa.js
+++ b/install/ui/ipa.js
@@ -204,14 +204,14 @@ var IPA = function() {
that.add_entity(entity);
} catch (e) {
- if (e.expected){
+ if (e.expected) {
/*expected exceptions thrown by builder just mean that
entities are not to be registered. */
return null;
}
- if (e.message){
+ if (e.message) {
alert(e.message);
- }else{
+ } else {
alert(e);
}
return null;
@@ -1086,3 +1086,7 @@ IPA.error_list = function() {
that.clear();
return that;
};
+
+IPA.config = {
+ default_priority: 500
+};