summaryrefslogtreecommitdiff
path: root/www/js/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/api.js')
-rw-r--r--www/js/api.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/api.js b/www/js/api.js
index 5b494ab..91a28d7 100644
--- a/www/js/api.js
+++ b/www/js/api.js
@@ -200,15 +200,15 @@ window.html5ks.api = {
bgleft: { xpos: 0.4, xanchor: 0.5, ypos: 1.0, yanchor: 1.0 },
bgright: { xpos: 0.6, xanchor: 0.5, ypos: 1.0, yanchor: 1.0 }
};
- var pos = positions[location];
+ var pos = positions[location] || positions["center"];
// TODO: implement transitions
if (pos) {
el.style.left = pos.xpos * 800 + "px";
el.style.top = pos.ypos * 600 + "px";
el.style.marginLeft = "-" + pos.xanchor * el.width + "px";
el.style.marginTop = "-" + pos.yanchor * el.height + "px";
- el.style.display = "block";
}
+ el.style.display = "block";
}
deferred.resolve();
};
@@ -231,7 +231,7 @@ window.html5ks.api = {
image = type;
break;
default:
- image = "sprites/" + name + "/" + name + "_" + type + ".png";
+ image = "sprites/" + name + "/" + (type && type.indexOf("_close") > -1 ? "close/" : "") + name + "_" + type + ".png";
}
}
if (typeof image == "string") {