Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 419705
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.git/web/git/git-log.js (-2 / +2 lines)
Lines 71-81 define(['i18n!git/nls/gitmessages', 'require', 'orion/browserCompatibility', 'or Link Here
71
			commandService.registerCommandContribution("pageNavigationActions", "eclipse.orion.git.nextLogPage", 2); //$NON-NLS-1$ //$NON-NLS-0$
71
			commandService.registerCommandContribution("pageNavigationActions", "eclipse.orion.git.nextLogPage", 2); //$NON-NLS-1$ //$NON-NLS-0$
72
72
73
			var pageParams = PageUtil.matchResourceParameters();
73
			var pageParams = PageUtil.matchResourceParameters();
74
			explorer.display(pageParams.resource);
74
			explorer.display(pageParams.resourceRaw);
75
75
76
			window.addEventListener("hashchange", function() {
76
			window.addEventListener("hashchange", function() {
77
				var pageParams = PageUtil.matchResourceParameters();
77
				var pageParams = PageUtil.matchResourceParameters();
78
				explorer.display(pageParams.resource);
78
				explorer.display(pageParams.resourceRaw);
79
			}, false);
79
			}, false);
80
		});
80
		});
81
	});
81
	});
(-)a/bundles/org.eclipse.orion.client.git/web/orion/git/gitLogExplorer.js (-2 / +1 lines)
Lines 153-159 exports.GitLogExplorer = (function() { Link Here
153
	
153
	
154
	GitLogExplorer.prototype.redisplay = function(){
154
	GitLogExplorer.prototype.redisplay = function(){
155
		var pageParams = PageUtil.matchResourceParameters();
155
		var pageParams = PageUtil.matchResourceParameters();
156
		this.display(pageParams.resource);
156
		this.display(pageParams.resourceRaw);
157
	};
157
	};
158
	
158
	
159
	GitLogExplorer.prototype.changedItem = function(parent, children) {
159
	GitLogExplorer.prototype.changedItem = function(parent, children) {
160
- 

Return to bug 419705