diff --git a/examples/index.html b/examples/index.html index 53b0845..9e75c44 100644 --- a/examples/index.html +++ b/examples/index.html @@ -23,6 +23,7 @@
+

Select test fixture:

@@ -42,6 +43,12 @@
+
+

Or load from URL:

+ + +
+
@@ -164,6 +171,13 @@ loadManifest($(this).data('json')); }); + $('#loadIIIF').click(function () { + var jsonUrl = $('#inputIIIF').val(); + if (jsonUrl) { + loadManifest(jsonUrl); + } + }); + });