Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

remove arrow when there is only 1 image #517

Merged
merged 1 commit into from
Nov 2, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.lightbox-container
.left-nav
img(src="/images/ico-arrow-big-left.svg", ng-click="incrementIndex(-1)")
img(ng-show="challenge.userDetails.submissions.length > 1", src="/images/ico-arrow-big-left.svg", ng-click="incrementIndex(-1)")

.selector
.title {{challenge.name}}
Expand All @@ -25,6 +25,6 @@
)

.right-nav
img(src="/images/ico-arrow-big-right.svg", ng-click="incrementIndex(1)")
img(ng-show="challenge.userDetails.submissions.length > 1", src="/images/ico-arrow-big-right.svg", ng-click="incrementIndex(1)")

// img(ng-src="http://studio.{{DOMAIN}}/studio.jpg?module=DownloadSubmission&sbmid={{challenge.thumbnailId}}&sbt=full", fallback-src="/images/ico-picture.svg")