aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-12-01 15:37:06 +0100
committerMax Kostikov <max@kostikov.co>2019-12-01 15:37:06 +0100
commit1eb70b66d8816408f5a1e474f7df77bcace47531 (patch)
treead048d098cef1bd4ae5c1d112fba2756bb2c3914 /view
parent3c1ff1fc63fc2ff86202b9e940bf8e83ad622884 (diff)
downloadvolse-hubzilla-1eb70b66d8816408f5a1e474f7df77bcace47531.tar.gz
volse-hubzilla-1eb70b66d8816408f5a1e474f7df77bcace47531.tar.bz2
volse-hubzilla-1eb70b66d8816408f5a1e474f7df77bcace47531.zip
Add missed semicolon
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index ac5daa771..9fe513694 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1128,7 +1128,7 @@ function dopin(id) {
.done(function() {
var i = $('#wall-item-pinned-' + id);
var me = $('#item-pinnable-' + id);
- $('#pinned-wrapper-' + id).fadeOut(function() { this.remove() });
+ $('#pinned-wrapper-' + id).fadeOut(function() { this.remove(); });
$('.wall-item-pinned').remove();
if(i.length)
me.html(me.html().replace(aStr['unpin_item'],aStr['pin_item']));