|
1 |
| -angular.module('ui.bootstrap.accordion', ['ui.bootstrap.collapse']) |
| 1 | +angular.module('ui.bootstrap.accordion', []) |
2 | 2 |
|
3 | 3 | .constant('accordionConfig', {
|
4 | 4 | closeOthers: true
|
@@ -127,4 +127,68 @@ angular.module('ui.bootstrap.accordion', ['ui.bootstrap.collapse'])
|
127 | 127 | });
|
128 | 128 | }
|
129 | 129 | };
|
130 |
| -}); |
| 130 | +}) |
| 131 | + |
| 132 | +/** |
| 133 | + * Animations based on addition and removal of `in` class |
| 134 | + * This requires the bootstrap classes to be present in order to take advantage |
| 135 | + * of the animation classes. |
| 136 | + */ |
| 137 | +.animation('.panel-collapse', function () { |
| 138 | + return { |
| 139 | + beforeAddClass: function (element, className, done) { |
| 140 | + if (className == 'in') { |
| 141 | + element |
| 142 | + .css({height: '0'}) |
| 143 | + .removeClass('collapse') |
| 144 | + .addClass('collapsing') |
| 145 | + ; |
| 146 | + } |
| 147 | + done(); |
| 148 | + }, |
| 149 | + addClass: function (element, className, done) { |
| 150 | + if (className == 'in') { |
| 151 | + element |
| 152 | + .css({height: element[0].scrollHeight + 'px'}) |
| 153 | + // FIXME awaiting: https://github.com/angular/angular.js/pull/5984 |
| 154 | + .on('$animate:close', function closeFn() { |
| 155 | + element |
| 156 | + .removeClass('collapsing') |
| 157 | + .css({height: 'auto'}); |
| 158 | + element.off('$animate:close', closeFn); |
| 159 | + }); |
| 160 | + } |
| 161 | + done(); |
| 162 | + }, |
| 163 | + beforeRemoveClass: function (element, className, done) { |
| 164 | + if (className == 'in') { |
| 165 | + element |
| 166 | + // IMPORTANT: The height must be set before adding "collapsing" class. |
| 167 | + // Otherwise, the browser attempts to animate from height 0 (in |
| 168 | + // collapsing class) to the given height here. |
| 169 | + .css({height: element[0].scrollHeight + 'px'}) |
| 170 | + // initially all panel collapse have the collapse class, this removal |
| 171 | + // prevents the animation from jumping to collapsed state |
| 172 | + .removeClass('collapse') |
| 173 | + .addClass('collapsing'); |
| 174 | + } |
| 175 | + done(); |
| 176 | + }, |
| 177 | + removeClass: function (element, className, done) { |
| 178 | + if (className == 'in') { |
| 179 | + element |
| 180 | + .css({height: '0'}) |
| 181 | + // FIXME awaiting: https://github.com/angular/angular.js/pull/5984 |
| 182 | + .on('$animate:close', function closeFn() { |
| 183 | + element |
| 184 | + .removeClass('collapsing') |
| 185 | + .addClass('collapse'); |
| 186 | + element.off('$animate:close', closeFn); |
| 187 | + }); |
| 188 | + } |
| 189 | + done(); |
| 190 | + } |
| 191 | + }; |
| 192 | +}) |
| 193 | + |
| 194 | +; |
0 commit comments