We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5ee9468 + c9b0a1b commit 02f9873Copy full SHA for 02f9873
src/js/app.js
@@ -28,7 +28,7 @@
28
menu.hide().css({
29
left: e.pageX,
30
top: e.pageY
31
- }).show();
+ }).appendTo('body').show();
32
e.preventDefault();
33
});
34
src/js/services/filenavigator.js
@@ -21,6 +21,9 @@
21
if (code == 404) {
22
this.error = 'Error 404 - Backend bridge is not working, please check the ajax response.';
23
}
24
+ if (code == 200) {
25
+ this.error = '';
26
+ }
27
if (!this.error && data.result && data.result.error) {
this.error = data.result.error;
@@ -144,4 +147,4 @@
144
147
145
148
return FileNavigator;
146
149
}]);
-})(angular);
150
+})(angular);
0 commit comments