add slash before route in ajaxify debug string

This commit is contained in:
Julian Lam
2016-10-23 22:51:32 -04:00
parent 7caad67ef2
commit 05700c951c

View File

@@ -217,7 +217,7 @@ $(document).ready(function () {
var timeElapsed = Date.now() - ajaxifyTimer; var timeElapsed = Date.now() - ajaxifyTimer;
if (config.environment === 'development' && !isNaN(timeElapsed)) { if (config.environment === 'development' && !isNaN(timeElapsed)) {
console.info('[ajaxify ' + url + '] Time elapsed:', timeElapsed + 'ms'); console.info('[ajaxify /' + url + '] Time elapsed:', timeElapsed + 'ms');
} }
}; };