Great plugin! Would you consider placing the quicktable configuration variables under the "config.quicktable" namespace to minimize potential name conflicts, and to facilitate cleaner automated installation processes?
In plugin.js, I believe changing line 5 would accomplish the job.
Old:
var conf = editor.config,
New:
var conf = editor.config.quicktable || {},
Usage would change to:
config.quicktable.varName = value;
Or:
config.quicktable = {
varName1: 0,
varName2: 5,
...
varNameN: true
}
Great plugin! Would you consider placing the quicktable configuration variables under the "config.quicktable" namespace to minimize potential name conflicts, and to facilitate cleaner automated installation processes?
In plugin.js, I believe changing line 5 would accomplish the job.
Old:
var conf = editor.config,New:
var conf = editor.config.quicktable || {},Usage would change to:
config.quicktable.varName = value;Or: