1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Correct whitespace option is passed to 'Show All Lines' request.

Summary:
Expanding lines duplicated some lines occasionally, because whitespace
option was different for the original request and the following request.

Test Plan:
Tested that the broken changeset was correct now.

Reviewed By: epriestley
Reviewers: epriestley
CC: jungejason, aran, epriestley
Differential Revision: 263
This commit is contained in:
tuomaspelkonen 2011-05-10 17:36:06 -07:00
parent e8744e7eeb
commit e4f42dcd7d
2 changed files with 2 additions and 0 deletions

View file

@ -189,6 +189,7 @@ class DifferentialChangesetViewController extends DifferentialController {
Javelin::initBehavior('differential-show-more', array(
'uri' => '/differential/changeset/',
'whitespace' => $request->getStr('whitespace'),
));
$detail = new DifferentialChangesetDetailView();

View file

@ -26,6 +26,7 @@ JX.behavior('differential-show-more', function(config) {
JX.DOM.setContent(container, 'Loading...');
JX.DOM.alterClass(context, 'differential-show-more-loading', true);
var data = e.getNodeData('show-more');
data['whitespace'] = config.whitespace;
new JX.Request(config.uri, JX.bind(null, onresponse, e))
.setData(data)
.send();