Fixed shadow placements.

This commit is contained in:
Scott Erickson 2014-12-23 09:12:41 -05:00
parent d18260c20c
commit 1bb76d5902

View file

@ -18,7 +18,7 @@
img.banner(src="/images/pages/play/level-banner-complete.png") img.banner(src="/images/pages/play/level-banner-complete.png")
if levelStatusMap[level.original] === 'started' if levelStatusMap[level.original] === 'started'
img.banner(src="/images/pages/play/level-banner-started.png") img.banner(src="/images/pages/play/level-banner-started.png")
div(style="left: #{level.x}%; bottom: #{level.y}%", class="level-shadow" + (next ? " next" : "") + " " + levelStatusMap[level.original] || "") div(style="left: #{level.position.x}%; bottom: #{level.position.y}%", class="level-shadow" + (next ? " next" : "") + " " + levelStatusMap[level.original] || "")
.level-info-container(data-level-id=level.original, data-level-path=level.levelPath || 'level', data-level-name=level.name) .level-info-container(data-level-id=level.original, data-level-path=level.levelPath || 'level', data-level-name=level.name)
div(class="level-info " + (levelStatusMap[level.original] || "")) div(class="level-info " + (levelStatusMap[level.original] || ""))
h3= level.name + (level.disabled ? " (Coming soon!)" : (level.locked ? " (Locked)" : "")) h3= level.name + (level.disabled ? " (Coming soon!)" : (level.locked ? " (Locked)" : ""))