I have the following references in my app.json file
"js": [
{
"path": "https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js",
"remote": true
},
{"path": "resources/debug.js"},
{"path": "resources/Resources.js"}
],
The resources/Resources.js file contains the following code:
console.log("Resources.js loaded.")
var MCC = MCC || {};
MCC.Strings = (function () {
//private
//public
return {
myProp: "myValue"
};
})();
However, the file Resources.js
never seems to load. Certainly the call to console.log('Resources.js loaded.")
is never made.
I admit, I don't really understand the app.json file very well, but I thought the references in this file would be loaded automatically. Any ideas why this is not the case?