itmaybejj / editoria11y

A user-friendly automatic content accessibility checker.
https://itmaybejj.github.io/editoria11y/
Other
41 stars 8 forks source link

Wrong protocol assumed #14

Closed HUisHU-Christian closed 10 months ago

HUisHU-Christian commented 1 year ago

In editoria11y-dashboard.js on line 12 the https protocol is assumed. While this might be true for most real websites nowadays, it is not that easy to achieve for localhost development.

This I'd propose to change

'https://'

with

window.location.protocol + '://'

itmaybejj commented 1 year ago

sure

note to self -- line ref

CWBudde commented 1 year ago

Oh, I noted that it should actually read: window.location.protocol + '//' (as the colon is part of the protocol)

itmaybejj commented 10 months ago

changed in 1.0.12.