Select chosen stylesheet on load
This commit is contained in:
parent
cf0a20a564
commit
2fd60c6d25
@ -19,11 +19,12 @@ onready(function(){
|
|||||||
|
|
||||||
var i = 1;
|
var i = 1;
|
||||||
stylesDiv.children().each(function() {
|
stylesDiv.children().each(function() {
|
||||||
stylesSelect.append(
|
var opt = $('<option></option>')
|
||||||
$('<option></option>')
|
|
||||||
.text(this.innerText.replace(/(^\[|\]$)/g, ''))
|
.text(this.innerText.replace(/(^\[|\]$)/g, ''))
|
||||||
.val(i)
|
.val(i);
|
||||||
);
|
if ($(this).hasClass('selected'))
|
||||||
|
opt.attr('selected', true);
|
||||||
|
stylesSelect.append(opt);
|
||||||
$(this).attr('id', 'style-select-' + i);
|
$(this).attr('id', 'style-select-' + i);
|
||||||
i++;
|
i++;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user