Created
October 3, 2014 08:44
-
-
Save rik/ff757d1a065015391ab9 to your computer and use it in GitHub Desktop.
This file contains 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
apps/system/lockscreen/js/lockscreen.js | 1 + | |
apps/system/test/unit/lockscreen_test.js | 6 ++++++ | |
2 files changed, 7 insertions(+) | |
diff --git a/apps/system/lockscreen/js/lockscreen.js b/apps/system/lockscreen/js/lockscreen.js | |
index bec29ee..2038b31 100755 | |
--- a/apps/system/lockscreen/js/lockscreen.js | |
+++ b/apps/system/lockscreen/js/lockscreen.js | |
@@ -197,6 +197,7 @@ | |
break; | |
case 'click': | |
+ console.log('received a click') | |
if (0 === evt.mozInputSource && | |
(this.areaUnlock === evt.target || | |
this.areaCamera === evt.target)) { | |
diff --git a/apps/system/test/unit/lockscreen_test.js b/apps/system/test/unit/lockscreen_test.js | |
index 47e5e42..7c521e2 100644 | |
--- a/apps/system/test/unit/lockscreen_test.js | |
+++ b/apps/system/test/unit/lockscreen_test.js | |
@@ -197,6 +197,12 @@ suite('system/LockScreen >', function() { | |
'it did\'t fire the correspond event to validate the passcode'); | |
}); | |
+ test('foo', function() { | |
+ var evt = new CustomEvent('click', {'bubbles': true}) | |
+ subject.passcodePad.dispatchEvent(evt); | |
+ console.log(subject.passcodePad.outerHTML) | |
+ }); | |
+ | |
suite('Handle event: screenchange should propogate to _screenEnabled prop', | |
function() { | |
var stubDispatch; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment