gavinkwoe / BeeFramework

[Experimental] A semi-hybrid framework that allows you to create mobile apps using Objective-C and XML/CSS
MIT License
3.33k stars 1.06k forks source link

修改一个bug,这个bug目前已知会影响//$(@"#txt").focusing 这段代码的使用 #118

Closed cdoky closed 9 years ago

cdoky commented 9 years ago

ON_SIGNAL3( BeeUITextField, RETURN, __signal) { if ($(@"#txtUName").focusing) { $(@"#txtUName").BLUR(); $(@"#txtUPwd").FOCUS(); }else if ($(@"#txtUPwd").focusing) { $(@"#txtUPwd").BLUR(); $(@"#txtUName").FOCUS(); } }

//$(@"#txtUName").focusing 原来的bug,这里判断永远为true