fix up the animations. seems to be related to the data-bound attribute causing the animtions not to fire on each .mix object.

pull/110/head
Drewster727 9 years ago
parent 07b02d90e6
commit bee4d2dc4c

@ -17,6 +17,11 @@ var mixItUpDefault = {
},
layout: {
display: 'block'
},
callbacks: {
onMixStart: function (state, futureState) {
$('.mix', this).removeAttr('data-bound').removeData('bound'); // fix for animation issues in other tabs
}
}
};
@ -49,6 +54,7 @@ $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
if ($ml.mixItUp('isLoaded')) $ml.mixItUp('destroy');
$ml.mixItUp(mixItUpConfig(activeState)); // init or reinit
}
//$('.mix[data-bound]').removeAttr('data-bound');
});
// Approve all

Loading…
Cancel
Save