Commit 7acc1161 by Diana Huang

Merge pull request #2477 from edx/diana/fix-sequence-titles

Prevent bad sequential titles
parents 28f2a547 539cd053
......@@ -21,7 +21,9 @@ class @Sequence
updatePageTitle: ->
# update the page title to include the current section
document.title = @link_for(@position).data('title') + @base_page_title
position_link = @link_for(@position)
if position_link and position_link.data('title')
document.title = position_link.data('title') + @base_page_title
hookUpProgressEvent: ->
$('.problems-wrapper').bind 'progressChanged', @updateProgress
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment