mirror of
https://github.com/nasa/openmct.git
synced 2025-04-06 02:46:48 +00:00
[Common UI] Tweak mct-scroll-* directives
Make fixes/tweaks to behavior of mct-scroll-x and mct-scroll-y directives after testing them against timeline markup. WTD-920.
This commit is contained in:
parent
9a88e5172a
commit
9fa09e25f0
@ -108,12 +108,12 @@
|
||||
},
|
||||
{
|
||||
"key": "mctScrollX",
|
||||
"implementations": "directives/MCTScroll.js",
|
||||
"implementation": "directives/MCTScroll.js",
|
||||
"depends": [ "$parse", "MCT_SCROLL_X_PROPERTY", "MCT_SCROLL_X_ATTRIBUTE" ]
|
||||
},
|
||||
{
|
||||
"key": "mctScrollY",
|
||||
"implementations": "directives/MCTScroll.js",
|
||||
"implementation": "directives/MCTScroll.js",
|
||||
"depends": [ "$parse", "MCT_SCROLL_Y_PROPERTY", "MCT_SCROLL_Y_ATTRIBUTE" ]
|
||||
}
|
||||
],
|
||||
|
@ -34,7 +34,8 @@ define(
|
||||
|
||||
// Handle event; assign to scroll state to scope
|
||||
function updateScope() {
|
||||
parsed.assign(element[0][property]);
|
||||
parsed.assign(scope, element[0][property]);
|
||||
scope.$apply(expr);
|
||||
}
|
||||
|
||||
// Initialize state in scope
|
||||
|
@ -26,7 +26,7 @@ define(
|
||||
mockParsed = jasmine.createSpy('parsed');
|
||||
mockParsed.assign = jasmine.createSpy('assign');
|
||||
|
||||
mockScope = jasmine.createSpyObj('$scope', ['$watch']);
|
||||
mockScope = jasmine.createSpyObj('$scope', ['$watch', '$apply']);
|
||||
mockElement = [{ testProperty: 42 }];
|
||||
mockElement.on = jasmine.createSpy('on');
|
||||
|
||||
@ -71,7 +71,7 @@ define(
|
||||
|
||||
it("publishes initial scroll state", function () {
|
||||
expect(mockParse).toHaveBeenCalledWith(EXPRESSION);
|
||||
expect(mockParsed.assign).toHaveBeenCalledWith(42);
|
||||
expect(mockParsed.assign).toHaveBeenCalledWith(mockScope, 42);
|
||||
});
|
||||
|
||||
it("updates scroll state when scope changes", function () {
|
||||
@ -82,7 +82,8 @@ define(
|
||||
it("updates scope when scroll state changes", function () {
|
||||
mockElement[0].testProperty = 12321;
|
||||
mockElement.on.mostRecentCall.args[1]({ target: mockElement[0] });
|
||||
expect(mockParsed.assign).toHaveBeenCalledWith(12321);
|
||||
expect(mockParsed.assign).toHaveBeenCalledWith(mockScope, 12321);
|
||||
expect(mockScope.$apply).toHaveBeenCalledWith(EXPRESSION);
|
||||
});
|
||||
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user