constant.js 160 Bytes
Newer Older
Lee Munkyeong committed
1 2 3 4 5 6 7 8 9 10 11
/**
 * Constant定義ファイル
 */

const readyState = {
    UNINITIALIZED : 0 ,
    LOADING : 1 ,
    LOADED : 2 ,
    INTERACTIVE : 3 ,
    COMPLETED : 4
}