Skip to content

Instantly share code, notes, and snippets.

@rik
Created October 3, 2014 08:44
Show Gist options
  • Save rik/ff757d1a065015391ab9 to your computer and use it in GitHub Desktop.
Save rik/ff757d1a065015391ab9 to your computer and use it in GitHub Desktop.
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