We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd3fccd commit 9c6a40cCopy full SHA for 9c6a40c
conf/config.go
@@ -103,15 +103,15 @@ func WithIcon(icon string) Option {
103
}
104
105
106
-// WithCustomCSS sets the custom CSS URL.
107
-func WithCustomCSS(customCSS ...string) Option {
+// WithStyles sets the custom CSS URL.
+func WithStyles(customCSS ...string) Option {
108
return func(c *Config) {
109
c.CustomCSS = customCSS
110
111
112
113
-// WithCustomJS sets the custom JavaScript URL.
114
-func WithCustomJS(customJS ...string) Option {
+// WithScripts sets the custom JavaScript URL.
+func WithScripts(customJS ...string) Option {
115
116
c.CustomJS = customJS
117
0 commit comments