mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-13 22:33:05 +00:00
Добавить текстовый тип опций
This commit is contained in:
parent
fa02bd8f7b
commit
54966185d1
|
@ -80,6 +80,7 @@ OptionsPage.prototype.restore = function() {
|
|||
break;
|
||||
|
||||
case 'enum':
|
||||
case 'plain':
|
||||
input.value = data.value;
|
||||
break;
|
||||
|
||||
|
@ -122,6 +123,11 @@ OptionsPage.prototype.updateOptionFromInput = function(input) {
|
|||
type: 'enum',
|
||||
value: input.value
|
||||
};
|
||||
} else {
|
||||
this._options[key] = {
|
||||
type: 'plain',
|
||||
value: input.value
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue