mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fixed class name in setButtonShown method, ionList directive
This commit is contained in:
2
js/angular/directive/list.js
vendored
2
js/angular/directive/list.js
vendored
@@ -168,7 +168,7 @@ function($animate, $timeout) {
|
||||
function setButtonShown(el, shown) {
|
||||
shown() && el.addClass('visible') || el.removeClass('active');
|
||||
ionic.requestAnimationFrame(function() {
|
||||
shown() && el.addClass('active') || el.removeClass('invisible');
|
||||
shown() && el.addClass('active') || el.removeClass('visible');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user