From a962710b8311eee84ae1fb3941edb7e6714cb221 Mon Sep 17 00:00:00 2001 From: David Honegger Rogers Date: Wed, 6 Apr 2022 14:45:16 -0600 Subject: [PATCH] minor updates --- {third_party => cinema/lib}/cinemacomponents.license.md | 0 cinema/view/2.2/main.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {third_party => cinema/lib}/cinemacomponents.license.md (100%) 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