Skip to content

Commit

Permalink
Renamed app.cssPrefix to app.slug ↞ [auto-sync from https://githu…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Jan 19, 2025
1 parent 398abf0 commit f0e18e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/data/app.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ChatGPT Widescreen Mode", "symbol": "🖥️", "cssPrefix": "chatgpt-widescreen",
"name": "ChatGPT Widescreen Mode", "symbol": "🖥️", "slug": "chatgpt-widescreen",
"author": { "name": "Adam Lui", "url": "https://github.com/adamlui" },
"urls": {
"chatgptJS": "https://chatgpt.js.org",
Expand Down
2 changes: 1 addition & 1 deletion chrome/extension/components/modals.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

window.modals = {
stack: [], // of types of undismissed modals
get class() { return `${this.imports.app.cssPrefix}-modal` },
get class() { return `${this.imports.app.slug}-modal` },

imports: {
import(deps) { // { app, env, updateCheck (userscript only) }
Expand Down
2 changes: 1 addition & 1 deletion firefox/extension/components/modals.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

window.modals = {
stack: [], // of types of undismissed modals
get class() { return `${this.imports.app.cssPrefix}-modal` },
get class() { return `${this.imports.app.slug}-modal` },

imports: {
import(deps) { // { app, env, updateCheck (userscript only) }
Expand Down

0 comments on commit f0e18e2

Please sign in to comment.