Skip to content

Commit

Permalink
Merge pull request openedx#431
Browse files Browse the repository at this point in the history
* stv/diff/funk:
  Remove commented conflict markers
  • Loading branch information
stvstnfrd committed Feb 8, 2016
2 parents a68d0d2 + 762bd4c commit f37882a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 17 deletions.
1 change: 0 additions & 1 deletion common/lib/capa/capa/templates/choicegroup.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
</span>
% endif
</div>
## TODO:FUNK % if show_correctness == "never" and (value or status not in ['unsubmitted']):
% if show_correctness == "never" and value and status != "unsubmitted":
<div class="capa_alert">${submitted_message}</div>
%endif
Expand Down
2 changes: 0 additions & 2 deletions common/lib/xmodule/xmodule/js/src/video/03_video_player.js
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,6 @@ function (HTML5Video, Resizer) {
}

this.videoPlayer.updatePlayTime(time, duration);
// TODO:FUNK this.videoPlayer.updatePlayTime(time, true);
// TODO:FUNK this.el.trigger('seek', arguments);

// the timer is stopped above; restart it.
if (this.videoPlayer.isPlaying()) {
Expand Down
7 changes: 0 additions & 7 deletions common/lib/xmodule/xmodule/js/src/video/04_video_control.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,17 +148,10 @@ function () {
}

function updateVcrVidTime(params) {
// TODO: FUNK <<<<<<< HEAD
// var duration = (this.config.endTime !== null) ? this.config.endTime : params.duration;
// // in case endTime is accidentally specified as being greater than the video
// duration = Math.min(duration, params.duration);
// this.videoControl.vidTimeEl.html(Time.format(params.time) + ' / ' + Time.format(duration));
// TODO: FUNK =======
var endTime = (this.config.endTime !== null) ? this.config.endTime : params.duration;
// in case endTime is accidentally specified as being greater than the video
endTime = Math.min(endTime, params.duration);
this.videoControl.vidTimeEl.html(Time.format(params.time) + ' / ' + Time.format(endTime));
// TODO: FUNK >>>>>>> 00b75f0119b981641833240be214ef2076329747
}

});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,17 +238,10 @@ function () {
// params.duration could accidentally be construed as a floating
// point double. Since we're displaying this number, round down
// to nearest second
// TODO:FUNK <<<<<<< HEAD
// var duration = Math.floor(params.duration);
//
// if (this.config.endTime !== null) {
// duration = Math.min(this.config.endTime, duration);
// TODO:FUNK =======
var endTime = Math.floor(params.duration);

if (this.config.endTime !== null) {
endTime = Math.min(this.config.endTime, endTime);
// TODO:FUNK >>>>>>> 00b75f0119b981641833240be214ef2076329747
}

if (
Expand Down

0 comments on commit f37882a

Please sign in to comment.