From 13b681eee0a78b8c3c393c764a8b37278b19285b Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 4 Sep 2019 03:44:19 +0900 Subject: [PATCH] HTTPS link to ux.stackexchange.com (#80255) saves a HTTP redirect --- src/vs/base/browser/ui/sash/sash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/base/browser/ui/sash/sash.ts b/src/vs/base/browser/ui/sash/sash.ts index ea4d43f5810f7..16279b74af908 100644 --- a/src/vs/base/browser/ui/sash/sash.ts +++ b/src/vs/base/browser/ui/sash/sash.ts @@ -143,7 +143,7 @@ export class Sash extends Disposable { this._register(domEvent(this.el, EventType.Start)(this.onTouchStart, this)); if (isIPad) { - // see also http://ux.stackexchange.com/questions/39023/what-is-the-optimum-button-size-of-touch-screen-applications + // see also https://ux.stackexchange.com/questions/39023/what-is-the-optimum-button-size-of-touch-screen-applications addClass(this.el, 'touch'); }