mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
(function(window, document, framework) {
|
|
|
|
|
|
function transitionBegin(e) {
|
|
|
|
var activePageElement = document.getElementById(framework.activePageId);
|
|
if(activePageElement) {
|
|
|
|
activePageElement.parentNode.removeChild(activePageElement);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
framework.on("pagetransition", transitionBegin);
|
|
|
|
|
|
})(this, document, FM = this.FM || {}); |