pixl-xyapp 2.1.21 → 2.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/page.js +8 -1
- package/package.json +1 -1
package/js/page.js
CHANGED
|
@@ -1740,8 +1740,15 @@ var Nav = {
|
|
|
1740
1740
|
}
|
|
1741
1741
|
|
|
1742
1742
|
Debug.trace('nav', "Calling page: " + page_name + ": " + JSON.stringify(page_args));
|
|
1743
|
+
|
|
1744
|
+
// if CodeEditor is up, prevent nav entirely
|
|
1745
|
+
if (CodeEditor.active) {
|
|
1746
|
+
this.go( this.loc );
|
|
1747
|
+
return;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1743
1750
|
Dialog.hide();
|
|
1744
|
-
CodeEditor.hide();
|
|
1751
|
+
// CodeEditor.hide();
|
|
1745
1752
|
// app.hideMessage();
|
|
1746
1753
|
app.pushSidebar();
|
|
1747
1754
|
|
package/package.json
CHANGED