Skip to content
Snippets Groups Projects
Unverified Commit 97e7c7bd authored by Jack Reed's avatar Jack Reed Committed by GitHub
Browse files

Merge branch 'develop' into minor-ui-improvement

parents c5e4dc2f f01478eb
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
overflow: hidden;
background-color: @black-33;
top: 0%;
z-index: 1;
}
.manifest-info {
......
......@@ -30,7 +30,7 @@ To initialize Mirador, it needs to be attached to an existing HTML **div** throu
$(function() {
Mirador({
id: "viewer",
data: [/* Manifests and collections here *]
data: [/* Manifests and collections here */]
});
});
</script>
......
......@@ -45,6 +45,7 @@ var Isfahan = function(configObject) {
n = group.length,
x = rect.x,
y = rect.y,
d,
o;
var offset = 0;
while (++i < n) {
......
......@@ -137,7 +137,7 @@
if (typeof annotation === 'object' && annotation.on) {
for (var i = 0; i < strategies.length; i++) {
if (strategies[i].isThisType(annotation)) {
shapeArray = strategies[i].parseRegion(annotation, this);
var shapeArray = strategies[i].parseRegion(annotation, this);
return shapeArray;
}
}
......
......@@ -87,8 +87,8 @@
return false;
}
saveModule = config.jsonStorageEndpoint.module,
saveOptions = config.jsonStorageEndpoint.options;
var saveModule = config.jsonStorageEndpoint.module;
var saveOptions = config.jsonStorageEndpoint.options;
_this.storageModule = new $[saveModule](saveOptions);
var sessionID = window.location.hash.substring(1); // will return empty string if none exists, causing the or statement below to evaluate to false, generating a new sesssionID.
......
......@@ -108,7 +108,7 @@
var aspectRatio = canvas.height/canvas.width,
width = (_this.thumbHeight/aspectRatio);
url = _this.manifest.getThumbnailForCanvas(canvas, width);
var url = _this.manifest.getThumbnailForCanvas(canvas, width);
_this.allImages.push({
url: url,
......
......@@ -137,7 +137,7 @@
};
});
templateData = {
var templateData = {
searchService: searchServiceIdArray
};
......
......@@ -21,11 +21,11 @@
"addSlotBelow": "Voeg Slot toe onderaan",
"imageView": "Beeld presentatie",
"bookView": "Boek presentatie",
"scrollView": "Navigeer door presentatie",
"thumbnailsView": "Galerie presentatie",
"scrollView": "Scroll view",
"thumbnailsView": "Bekijk thumbnail",
"comments": "Commentaar",
"addTagsHere": "Voeg hier tags toe",
"save": "Bewaren",
"save": "Opslaan",
"cancel": "Annuleren",
"edit": "Bewerken",
"delete": "Verwijderen",
......@@ -34,6 +34,6 @@
"objectMetadata": "Object Metadata",
"fullScreen": "Volledig scherm",
"logo": "Logo",
"load": "Opladen",
"dropToLoad": "Vallen hier om object te laden"
"load": "Laad",
"dropToLoad": "Drop hier om the laden"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment