[Code Style] Run gulp fixstyle

...to apply code style settings from #142.
This commit is contained in:
Victor Woeltjen
2016-05-19 11:29:13 -07:00
parent f12b9704d9
commit fa77139077
440 changed files with 1885 additions and 1662 deletions

View File

@@ -49,7 +49,7 @@ define(
it("synchronizes pan-zoom stack depth", function () {
expect(group.getDepth()).toEqual(1);
group.getPanZoomStack(1).pushPanZoom([ 10, 20 ], [ 30, 40 ]);
group.getPanZoomStack(1).pushPanZoom([10, 20], [30, 40]);
stacks.forEach(function (stack) {
expect(stack.getDepth()).toEqual(2);
});
@@ -58,11 +58,11 @@ define(
it("synchronizes domain but not range", function () {
// Set up different initial states
stacks.forEach(function (stack, i) {
stack.pushPanZoom([ i, i ], [ i, i ]);
stack.pushPanZoom([i, i], [i, i]);
});
// Push a new pan-zoom state onto one of the stacks
group.getPanZoomStack(1).pushPanZoom([ 99, 99 ], [ 42, 42 ]);
group.getPanZoomStack(1).pushPanZoom([99, 99], [42, 42]);
// Should changed domain values for all stacks, but
// only changed range values for stack 1
@@ -85,7 +85,7 @@ define(
it("clears pan-zoom on request", function () {
// Set up different initial states
stacks.forEach(function (stack, i) {
stack.pushPanZoom([ i, i ], [ i, i ]);
stack.pushPanZoom([i, i], [i, i]);
});
// Verify that we have a greater depth
@@ -104,7 +104,7 @@ define(
it("pops pan-zoom on request", function () {
// Set up different initial states
stacks.forEach(function (stack, i) {
stack.pushPanZoom([ i, i ], [ i, i ]);
stack.pushPanZoom([i, i], [i, i]);
});
// Verify that we have a greater depth
@@ -123,4 +123,4 @@ define(
});
}
);
);