jquery.mobile.custom.js에서
cleanFrom: function() {
this.$from
.removeClass( $.mobile.activePageClass + " out in reverse " + this.name )
.height( "" );
},
이 부분을 다음과 같이 변경해준다.
cleanFrom: function() {
this.$from
.remove();
},
그러면 페이지 전환효과는 있지만 페이지가 저장되지 않아서 각종 오류에서 해방된다.
(애초에 custom으로 다운받을 때 init을 체크해제해도 되는데 그러면 효과빠지는게 너무 많아서 쓰는 의미가 없다)