Skip to content

Commit

Permalink
ensure path prefix added for breadcrumb construction
Browse files Browse the repository at this point in the history
  • Loading branch information
aclement committed Feb 21, 2013
1 parent b643665 commit 50984d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/scripts/scripted/editor/editorPane.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ function(mKeybinder, mEditor, mPaneFactory, mNavHistory, mKeyBinding, mPageState
for (var i = 0, len = crumbs.length; i < len; i++) {
// Uncomment when the tests bloody well behave with this change in, stupid things.
if (i===0 && crumbs[i]===window.fsroot) {
constructedPath = window.fsroot+'/';
continue;
}
newCrumbElem = $('<li class="light_gradient" data-id="'+i+'"><span>' + crumbs[i] + '</span></li>');
Expand Down

0 comments on commit 50984d9

Please sign in to comment.