Remove old code

This commit is contained in:
Samuel Elliott 2018-02-14 16:14:59 +00:00
parent 41b7906612
commit 8c5796e4f6
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 0 additions and 2 deletions

View File

@ -109,12 +109,10 @@ export default class {
}
static pluginSettings(plugin) {
// return this.add({ headertext: plugin.name + ' Settings', settings: plugin.config, saveSettings: plugin.saveSettings }, SettingsModal);
return this.settings(plugin.name + ' Settings', plugin.config, null, null, plugin.saveSettings.bind(plugin));
}
static themeSettings(theme) {
// return this.add({ headertext: theme.name + ' Settings', settings: theme.config, saveSettings: theme.saveSettings }, SettingsModal);
return this.settings(theme.name + ' Settings', theme.config, null, null, theme.saveSettings.bind(theme));
}