Integrated hint alerts in the main frame
diff --git a/dev/js/src/init.js b/dev/js/src/init.js
index c003a1d..3b911b6 100644
--- a/dev/js/src/init.js
+++ b/dev/js/src/init.js
@@ -178,6 +178,17 @@
};
};
+ if (KorAP.koralQuery["errors"]) {
+ var errors = KorAP.koralQuery["errors"];
+ for (var i in errors) {
+ if (errors[i][0] === 302) {
+ obj.hint = hintClass.create();
+ obj.hint.alert(errors[i][2], errors[i][1]);
+ break;
+ }
+ }
+ };
+
// Session has KQ visibility stored
if (show["kq"])
showKQ.apply();
@@ -303,7 +314,8 @@
*/
// Todo: Pass an element, so this works with
// tutorial pages as well!
- obj.hint = hintClass.create();
+ if (obj.hint === undefined)
+ obj.hint = hintClass.create();
return obj;
});