Fix the clickies

pull/749/head
lilia 11 years ago
parent 7b0de6afe7
commit 0d5d14da6a

@ -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) {

Loading…
Cancel
Save