Files
freeCodeCamp/server/views/challenges/showVideo.jade
Ka Lun Lee 65db39879f fixed spacing for Basejump and similar pages
there were very wide blank spaces between checklist and text when the page size was < 760px, also fixed misplaced titles in Basejump pages for Firefox when < 760px
closes #5347
2016-02-03 18:27:23 -08:00

91 lines
3.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

extends ../layout-wide
block content
.row
.col-xs-12.col-sm-12.col-md-4.bonfire-top
h4.text-center= name
hr
ol
for step, index in description
.row.checklist-element(id="#{dashedName + index}")
.col-xs-2.col-sm-1.col-md-2.padded-ionic-icon.text-right
input(type='checkbox' class='challenge-list-checkbox')
.col-xs-10.col-sm-11.col-md-10
li.step-text.wrappable!= step
.col-xs-12.col-sm-12.col-md-8
.embed-responsive.embed-responsive-16by9
iframe.embed-responsive-item(src='//player.vimeo.com/video/#{video}')
.spacer
if (user)
a.btn.btn-primary.btn-big.btn-block#completed-courseware-editorless I've completed this challenge (ctrl + enter)
else
a.btn.btn-big.btn-primary.btn-block(href='/challenges/next-challenge?id=' + id) I've completed this challenge (ctrl + enter)
script.
var userLoggedIn = true;
.button-spacer
.btn-group.input-group.btn-group-justified
.btn.btn-primary.btn-big#challenge-help-btn Get help
.btn.btn-primary.btn-big#trigger-issue-modal Report a bug
if (!user)
.button-spacer
a.btn.btn-big.signup-btn.btn-block(href='/login') Sign in so you can save your progress
script.
var userLoggedIn = false;
br
script(type="text/javascript").
#complete-courseware-editorless-dialog.modal(tabindex='-1')
.modal-dialog.animated.fadeIn.fast-animation
.modal-content
.modal-header.challenge-list-header= compliment
a.close.closing-x(href='#', data-dismiss='modal', aria-hidden='true') ×
.modal-body
.text-center
.animated.zoomInDown
span.completion-icon.ion-checkmark-circled.text-primary
if (user)
a.btn.btn-lg.btn-primary.btn-block#next-courseware-button(name='_csrf', value=_csrf) I've completed this challenge (ctrl + enter)
else
a.animated.fadeIn.btn.btn-lg.btn-primary.btn-block(href='/challenges/next-challenge?id=' + id) I've completed this challenge (ctrl + enter)
include ../partials/challenge-modals
script.
var common = window.common || { init: [] };
common.challengeId = !{JSON.stringify(id)};
common.challengeName = !{JSON.stringify(name)};
common.challengeType = !{JSON.stringify(challengeType)};
common.dashedName = !{JSON.stringify(dashedName)};
common.gaName = !{JSON.stringify(gaName)};
common.init.push(function($) {
function controlEnterHandler(e) {
if (
e.keyCode === 13 &&
(e.ctrlKey || e.metaKey)
) {
$('body').unbind('keydown');
$('#complete-courseware-editorless-dialog').modal('show');
}
};
function modalControlEnterHandler(e) {
if (
e.keyCode === 13 &&
(e.ctrlKey || e.metaKey)
) {
$('#complete-courseware-editorless-dialog').unbind('keydown');
$('#next-courseware-button').click();
}
};
if (!{JSON.stringify(user && user.username ? true : false)}) {
$('#complete-courseware-editorless-dialog').bind('keydown', modalControlEnterHandler);
}
$('body').bind('keydown', controlEnterHandler);
$('#completed-courseware-editorless').on('click', function() {
$('#complete-courseware-editorless-dialog').modal('show');
});
});
include ../partials/challenge-footer