Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iOS7.0.xにてmin版のhifiveを使用するとイベントハンドラが実行されない #402

Closed
tabatas opened this issue Aug 29, 2014 · 1 comment
Assignees
Labels
Milestone

Comments

@tabatas
Copy link

tabatas commented Aug 29, 2014

iOS7.0.3、iOS7.0.4でhifive1.1.13.jsのmin版を使用すると、コントローラーからDOM要素にイベントをバインドしても処理が実行されません。
iOS6.1.2、iOS7.1.0、Android4.1.2では正常に実行されていました。また、デバッグ版のh5-1.1.13.dev.jsではどのOSでも正常に実行しました。
なお、controllerのみを含めたカスタムビルドでも同様の症状が起こりました。

h5-1.1.13.js min版使用時に
正しく動作したOS
iOS 6.1.2
iOS 7.1.0
Android 4.1.2
動作しなかったOS
iOS 7.0.3
iOS 7.0.4

HTML

<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <script type="text/javascript" src="res/lib/jquery/jquery-2.1.1.min.js"></script>
        <script type="text/javascript" src="res/lib/h5/h5-1.1.13.ctrl.js"></script>
        <script type="text/javascript" src="res/js/test.js"></script>
    </head>
    <body class="body">
        <div id="sage" style="width:50px;height:50px;background-color:red;cursor:pointer"></div>
    </body>
</html>

JavaScript test.js

$(function(){
    var controller ={
        __name: 'TestController',
        '#sage click': function() {
            alert('click!!');
        }
    };
    h5.core.controller('.body' , controller);
});
@fukudayasuo fukudayasuo self-assigned this Aug 29, 2014
@simdy simdy added the bug label Sep 1, 2014
@simdy simdy added this to the v1.1.14 milestone Sep 1, 2014
@fukudayasuo
Copy link

対応しました。
原因は、minifyされたコードの一部にiOS7.0.4で正しく解釈されない部分があることが原因でした。
iOS7.0.4では、以下のような『if文の条件式内の論理値と論理積を含む条件式との比較』が正しく判定されません。

if (false !== (null && 'hoge')) {
    alert('success');
} else {
    alert('error'); // iOS7.0.4だとelse文が実行される
}

hifiveのminifyしたコードの、イベントハンドラをバインドするかどうかの条件式が上記のようなパターンに当てはまってしまい、iOS7.0.4でイベントハンドラのバインドが正しく行われなくなっていました。

挙動が変わらないように、minifyした時に上記パターンにならないように(3項演算子になるように)ソースコードを修正して、対応しました。

@simdy simdy closed this as completed Sep 1, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants