xthexder / wide-github

Change all github repository pages to be full width and dynamically sized.
MIT License
378 stars 71 forks source link

Violentmonkey script is broken because of wrong quotes in wide-github.user.js #82

Closed zrajnai-shapr3d closed 10 months ago

zrajnai-shapr3d commented 10 months ago

Double quotes are used inside strings starting with double quotes, which causes syntax errors. The error is repeated in 4 places.

e.g ...="--sticky-pane-height: 100vh;"] ... should be ...='--sticky-pane-height: 100vh;']

(note the double quotes changed to single quotes.

This effective broke the violentmonkey script.

xthexder commented 10 months ago

👍 Fixed the build script so it properly escapes double quotes from the CSS.