dependencies: Upgrade eslint from 6.0.1 to 6.6.0.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg
2019-11-08 17:48:01 -08:00
committed by Tim Abbott
parent 2eba3e7827
commit ffe8ec3450
7 changed files with 131 additions and 131 deletions

View File

@@ -8,7 +8,7 @@ function make_upload_absolute(uri) {
// Show the upload button only if the browser supports it.
exports.feature_check = function (upload_button) {
if (window.XMLHttpRequest && (new XMLHttpRequest()).upload) {
if (window.XMLHttpRequest && new XMLHttpRequest().upload) {
upload_button.removeClass("notdisplayed");
}
};