code with words

This commit is contained in:
Adam Bradley
2013-08-25 01:32:30 -05:00
parent 8f59ba549a
commit 583c0826eb
14 changed files with 244 additions and 90 deletions

View File

@ -0,0 +1,18 @@
(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 || {});