Skip to content

Commit f90711b

Browse files
authored
Merge pull request #10 from milkmeowo/fix-remove-from-list-not-work-bug
fixed #8 Remove from list not work
2 parents bada3f7 + e9023b7 commit f90711b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

resources/views/edit/hash.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@
116116
title: "Remove from list ?",
117117
type: "error",
118118
showCancelButton: true
119-
},
120-
function(){
119+
})
120+
.then(function(){
121121
122122
var params = {
123123
key: key,

resources/views/edit/list.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@
111111
title: "Remove from list ?",
112112
type: "error",
113113
showCancelButton: true
114-
},
115-
function(){
114+
})
115+
.then(function(){
116116
117117
var params = {
118118
key: key,

resources/views/edit/zset.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@
116116
title: "Remove from list ?",
117117
type: "error",
118118
showCancelButton: true
119-
},
120-
function(){
119+
})
120+
.then(function(){
121121
122122
var params = {
123123
key: key,

0 commit comments

Comments
 (0)