[Styles] Merge in style updates

Merge in style updates and split pane updates related
to timeline view into open-source-friendly branch,
WTD-901
This commit is contained in:
Victor Woeltjen
2015-02-25 11:25:20 -08:00
parent a3685d0c6b
commit f523022a2a
20 changed files with 304 additions and 122 deletions

View File

@@ -41,6 +41,13 @@ define(
expect(controller.state() > initialState).toBeTruthy();
});
it("accepts a default state", function () {
// Should use default state the first time...
expect(controller.state(12321)).toEqual(12321);
// ...but not after it's been initialized
expect(controller.state(42)).toEqual(12321);
});
});
}
);