| 1287 | extend(PluginList, superClass); |
| 1288 | |
| 1289 | function PluginList(plugins) { |
| 1290 | this.handleDeleteClick = bind(this.handleDeleteClick, this); |
| 1291 | this.handleUpdateClick = bind(this.handleUpdateClick, this); |
| 1292 | this.handleResetClick = bind(this.handleResetClick, this); |
| 1293 | this.handleCheckboxChange = bind(this.handleCheckboxChange, this); |
| 1294 | this.savePluginStatus = bind(this.savePluginStatus, this); |
| 1295 | this.plugins = plugins; |
| 1296 | } |
| 1297 | |
| 1298 | PluginList.prototype.savePluginStatus = function(plugin, is_enabled) { |
| 1299 | Page.cmd("pluginConfigSet", [plugin.source, plugin.inner_path, "enabled", is_enabled], (function(_this) { |