Browse Source

Fix recording final display state as none

pull/2034/head
jlukic 9 years ago
parent
commit
54bd5afac6
1 changed files with 3 additions and 1 deletions
  1. 4
      src/definitions/modules/transition.js

4
src/definitions/modules/transition.js

@ -363,7 +363,9 @@ $.fn.transition = function() {
save: { save: {
displayType: function(displayType) { displayType: function(displayType) {
$module.data(metadata.displayType, displayType);
if(displayType !== 'none') {
$module.data(metadata.displayType, displayType);
}
}, },
transitionExists: function(animation, exists) { transitionExists: function(animation, exists) {
$.fn.transition.exists[animation] = exists; $.fn.transition.exists[animation] = exists;

Loading…
Cancel
Save