Remove test code

This commit is contained in:
Michael Lange
2020-05-26 14:54:59 -07:00
parent 07ce413ce8
commit 97e26b82e4

View File

@@ -4,15 +4,6 @@ export function initialize() {
// Provides the app config to all templates
application.inject('controller', 'config', 'service:config');
application.inject('component', 'config', 'service:config');
const jQuery = window.jQuery;
jQuery.__ajax = jQuery.ajax;
jQuery.ajax = function() {
// eslint-disable-next-line
console.log('jQuery.ajax called:', ...arguments);
return jQuery.__ajax(...arguments);
};
}
export default {