frayerjj-frontend 0.2.2 → 0.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frayerjj-frontend",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "My base frontend for various projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/modal.js CHANGED
@@ -151,7 +151,7 @@ export const modal = {
151
151
  bsAjaxModal.show();
152
152
  loading.start(ajaxModalBody);
153
153
  message.verbose('Loading AJAX Modal');
154
- ajax({
154
+ window.ajax({
155
155
  method: 'GET',
156
156
  uri: el.getAttribute('modal-load-uri'),
157
157
  json: false,
package/src/session.js CHANGED
@@ -21,7 +21,7 @@ export const session = {
21
21
  },
22
22
  // Set a session variable
23
23
  set: (varName, val) => {
24
- message.verbose('Setting Session Variable: ' + varName + ' = ' + val);
24
+ //message.verbose('Setting Session Variable: ' + varName + ' = ' + val);
25
25
  sessionStorage.setItem(varName, val);
26
26
  },
27
27
  // Remove a session variable