Created
November 2, 2018 02:44
-
-
Save yancya/0526fb3ec3e3ee1a8266ff4e4e7cee84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// IE11 では、これらを書いておかないと | |
// 'ready page:load' のフックが動かない事がある | |
// 理由はわからない...... | |
$(document).on('page:fetch', function() {}); | |
$(document).on('page:restore', function() {}); | |
$(document).on('page:change', function() {}); | |
$(document).on('ready page:load', function() { | |
// 目当ての処理 | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment