Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit f8dc9f7

Browse files
fix(dialog, menu, select, interimElement): use $animateCss
replace programmatic use of element.css for style changes and use of transitionEnd event listeners with use of ngAnimate's $animateCss; use polyfill for Angular <1.4. $mdUtil.dom.animator.translate3d() uses $animateCss() instead of waitTransitionEnd() use animateCss.js polyfill for 'material.animate' module - add mock `createMockStyleSheet` for animateCss tests refactors to menu-interim-element.js and select.js - refactor logic and patterns used - use $animateCss in place of waitTransitionEnd() debounce Select and Menu window resize handlers Dialog uses same showBackdrop/hideBackdrop pattern as Menu and Select select async demo no longer clears users list when reloading select demos use `md-input-container { margin-right: 10px;}` hide Select Backdrop with zero duration enable full click detection in select-value area by using background color (with zero alpa). BREAKING-CHANGES: select and backdrop styles added * select list text is not selectable, * select backdrop hide duration is 0ms * select text value background has zero alpha ```scss .md-text { @include not-selectable(); } .md-select-value { background-color: rgba(0,0,0,0); } md-backdrop { &.md-select-backdrop { transition-duration: 0ms; } } ``` Fixes #3919. Fixes #3837. Fixes #3773, Fixes #3640. Fixes #3527. Fixes #3653.
1 parent b6d6a60 commit f8dc9f7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

config/build.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var fs = require('fs');
33
var versionFile = __dirname + '/../dist/commit';
44

55
module.exports = {
6-
ngVersion: '1.4.3',
6+
ngVersion: '1.3.15',
77
version: pkg.version,
88
repository: pkg.repository.url
99
.replace(/^git/,'https')

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"url": "git://github.com/angular/material.git"
66
},
77
"devDependencies": {
8-
"angular": "^1.4.0",
9-
"angular-animate": "^1.4.0",
10-
"angular-aria": "^1.4.0",
11-
"angular-messages": "^1.4.0",
12-
"angular-mocks": "^1.4.0",
13-
"angular-route": "^1.4.0",
8+
"angular": "^1.3.15",
9+
"angular-animate": "^1.3.15",
10+
"angular-aria": "^1.3.15",
11+
"angular-messages": "^1.3.15",
12+
"angular-mocks": "^1.3.15",
13+
"angular-route": "^1.3.15",
1414
"angularytics": "^0.3.0",
1515
"canonical-path": "0.0.2",
1616
"cli-color": "^1.0.0",
@@ -64,4 +64,4 @@
6464
"merge-base": "git merge-base $(npm run -s current-branch) origin/master",
6565
"squash": "git rebase -i $(npm run -s merge-base)"
6666
}
67-
}
67+
}

src/core/util/animation/animateCss.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ describe('$animateCss', function() {
33
var jqLite = angular.element;
44
var forEach = angular.forEach;
55

6-
beforeEach(module('material.animate','ngAnimate'));
6+
beforeEach(module('ngAnimateMock','material.animate'));
77

88
function assertHasClass(element, className, not) {
99
expect(element.hasClass(className)).toBe(!not);

0 commit comments

Comments
 (0)