diff --git a/third_party/cinemacomponents.license.md b/cinema/lib/cinemacomponents.license.md similarity index 100% rename from third_party/cinemacomponents.license.md rename to cinema/lib/cinemacomponents.license.md diff --git a/cinema/view/2.2/main.js b/cinema/view/2.2/main.js index 95e7dda..6a10336 100644 --- a/cinema/view/2.2/main.js +++ b/cinema/view/2.2/main.js @@ -44,7 +44,7 @@ function loadAttributes(callback) { var xobj = new XMLHttpRequest(); xobj.overrideMimeType("application/json"); - xobj.open('GET', "cinema/view/2.1/cinema_attributes.json", true); // Replace 'my_data' with the path to your file + xobj.open('GET', "cinema/view/2.2/cinema_attributes.json", true); // Replace 'my_data' with the path to your file xobj.onreadystatechange = function () { if (xobj.readyState == 4 && (xobj.status == 0 || xobj.status == 200)) { // Required use of an anonymous callback as .open will NOT return a value but simply returns undefined in asynchronous mode