Fix the clickies
This commit is contained in:
parent
7b0de6afe7
commit
0d5d14da6a
1 changed files with 4 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
||||||
$('#inbox_link').onclick = function() {
|
$('#inbox_link').click(function() {
|
||||||
$('#inbox').show();
|
$('#inbox').show();
|
||||||
$('#send').hide();
|
$('#send').hide();
|
||||||
}
|
});
|
||||||
$('#send_link').onclick = function() {
|
$('#send_link').click(function() {
|
||||||
$('#inbox').hide();
|
$('#inbox').hide();
|
||||||
$('#send').show();
|
$('#send').show();
|
||||||
}
|
});
|
||||||
|
|
||||||
registerOnLoadFunction(function() {
|
registerOnLoadFunction(function() {
|
||||||
if (storage.getUnencrypted("number_id") === undefined) {
|
if (storage.getUnencrypted("number_id") === undefined) {
|
||||||
|
|
Loading…
Reference in a new issue