mirror of
https://github.com/zulip/zulip.git
synced 2025-11-19 05:58:25 +00:00
lint: Add dangling commas in JavaScript objects.
This commit is contained in:
@@ -382,8 +382,8 @@ $(function () {
|
||||
relay_url: "https://webathena.mit.edu/relay.html",
|
||||
params: {
|
||||
realm: "ATHENA.MIT.EDU",
|
||||
principal: principal
|
||||
}
|
||||
principal: principal,
|
||||
},
|
||||
}, function (err, r) {
|
||||
if (err) {
|
||||
blueslip.warn(err);
|
||||
@@ -402,7 +402,7 @@ $(function () {
|
||||
},
|
||||
error: function () {
|
||||
$("#zephyr-mirror-error").show();
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
||||
$('#settings-dropdown').dropdown("toggle");
|
||||
@@ -440,13 +440,13 @@ $(function () {
|
||||
if ($target.parent().hasClass("youtube-video")) {
|
||||
ui.lightbox({
|
||||
type: "youtube",
|
||||
id: $target.data("id")
|
||||
id: $target.data("id"),
|
||||
});
|
||||
} else {
|
||||
ui.lightbox({
|
||||
type: "photo",
|
||||
image: img,
|
||||
user: user
|
||||
user: user,
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user