@@ -49,7 +49,7 @@ $(".enable-disable-alias").change(async function () {
49
49
let alias = $ ( this ) . data ( "alias-email" ) ;
50
50
51
51
await disableAlias ( aliasId , alias ) ;
52
- } )
52
+ } ) ;
53
53
54
54
async function disableAlias ( aliasId , alias ) {
55
55
let oldValue ;
@@ -118,7 +118,7 @@ $(".enable-disable-pgp").change(async function (e) {
118
118
// reset to the original value
119
119
$ ( this ) . prop ( "checked" , oldValue ) ;
120
120
}
121
- } )
121
+ } ) ;
122
122
123
123
$ ( ".pin-alias" ) . change ( async function ( ) {
124
124
let aliasId = $ ( this ) . data ( "alias" ) ;
@@ -153,7 +153,7 @@ $(".pin-alias").change(async function () {
153
153
// reset to the original value
154
154
$ ( this ) . prop ( "checked" , oldValue ) ;
155
155
}
156
- } )
156
+ } ) ;
157
157
158
158
$ ( ".save-note" ) . on ( "click" , async function ( ) {
159
159
let oldValue ;
@@ -186,7 +186,7 @@ $(".save-note").on("click", async function () {
186
186
$ ( this ) . prop ( "checked" , oldValue ) ;
187
187
}
188
188
189
- } )
189
+ } ) ;
190
190
191
191
$ ( ".save-mailbox" ) . on ( "click" , async function ( ) {
192
192
let oldValue ;
@@ -224,7 +224,7 @@ $(".save-mailbox").on("click", async function () {
224
224
$ ( this ) . prop ( "checked" , oldValue ) ;
225
225
}
226
226
227
- } )
227
+ } ) ;
228
228
229
229
$ ( ".save-alias-name" ) . on ( "click" , async function ( ) {
230
230
let aliasId = $ ( this ) . data ( "alias" ) ;
@@ -250,7 +250,7 @@ $(".save-alias-name").on("click", async function () {
250
250
toastr . error ( "Sorry for the inconvenience! Could you refresh the page & retry please?" , "Unknown Error" ) ;
251
251
}
252
252
253
- } )
253
+ } ) ;
254
254
255
255
256
256
new Vue ( {
0 commit comments