From 0d5d14da6aec16fb830e17426ddaca783b9def62 Mon Sep 17 00:00:00 2001 From: lilia Date: Mon, 10 Mar 2014 22:52:18 -0700 Subject: [PATCH] Fix the clickies --- js/popup.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/popup.js b/js/popup.js index 7fe0d0003..2fb3d81ec 100644 --- a/js/popup.js +++ b/js/popup.js @@ -1,11 +1,11 @@ -$('#inbox_link').onclick = function() { +$('#inbox_link').click(function() { $('#inbox').show(); $('#send').hide(); -} -$('#send_link').onclick = function() { +}); +$('#send_link').click(function() { $('#inbox').hide(); $('#send').show(); -} +}); registerOnLoadFunction(function() { if (storage.getUnencrypted("number_id") === undefined) {