alchemymvc 1.3.14 → 1.3.15
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/lib/class/conduit.js +4 -1
- package/package.json +1 -1
package/lib/class/conduit.js
CHANGED
|
@@ -428,7 +428,7 @@ Conduit.setMethod(function setReqRes(req, res) {
|
|
|
428
428
|
*
|
|
429
429
|
* @author Jelle De Loecker <jelle@develry.be>
|
|
430
430
|
* @since 0.3.3
|
|
431
|
-
* @version 1.
|
|
431
|
+
* @version 1.3.15
|
|
432
432
|
*/
|
|
433
433
|
Conduit.setMethod(function initValues() {
|
|
434
434
|
|
|
@@ -471,6 +471,9 @@ Conduit.setMethod(function initValues() {
|
|
|
471
471
|
|
|
472
472
|
// The current active theme
|
|
473
473
|
this.theme = null;
|
|
474
|
+
|
|
475
|
+
// Make sure the tested routes are reset
|
|
476
|
+
this[TESTED_ROUTES] = null;
|
|
474
477
|
});
|
|
475
478
|
|
|
476
479
|
/**
|