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.
Files changed (2) hide show
  1. package/js/page.js +8 -1
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixl-xyapp",
3
- "version": "2.1.21",
3
+ "version": "2.1.22",
4
4
  "description": "Front-end web application and theme for xyOps.",
5
5
  "author": "Joseph Huckaby <jhuckaby@pixlcore.com>",
6
6
  "homepage": "https://github.com/pixlcore/pixl-xyapp",