mm-math 0.0.7 → 0.0.9

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/browse.html CHANGED
@@ -150,7 +150,7 @@
150
150
  submitBtn.disabled = true;
151
151
  msgEl.textContent = '';
152
152
  try {
153
- var res = await fetch('./api/users/change-password', {
153
+ var res = await fetch('https://orange-dust-8e2b.jonah-7a0.workers.dev/api/users/change-password', {
154
154
  method: 'POST',
155
155
  headers: { 'Content-Type': 'application/json' },
156
156
  body: JSON.stringify({ username: username, currentPassword: cur, newPassword: nw }),
@@ -135,7 +135,7 @@
135
135
  msgEl.textContent = '';
136
136
 
137
137
  try {
138
- var res = await fetch('./api/users/change-password', {
138
+ var res = await fetch('https://orange-dust-8e2b.jonah-7a0.workers.dev/api/users/change-password', {
139
139
  method: 'POST',
140
140
  headers: { 'Content-Type': 'application/json' },
141
141
  body: JSON.stringify({ username: username, currentPassword: cur, newPassword: nw }),