[DE PE SSE mobile] Bug 47148
This commit is contained in:
parent
210e8dcd3b
commit
571768c1ff
|
@ -71,6 +71,11 @@ export class storeTextSettings {
|
|||
type : font.asc_getFontType()
|
||||
});
|
||||
}
|
||||
|
||||
array.sort(function(a, b) {
|
||||
return (a.name.toLowerCase() > b.name.toLowerCase()) ? 1 : -1;
|
||||
});
|
||||
|
||||
this.fontsArray = array;
|
||||
}
|
||||
resetFontName (font) {
|
||||
|
|
|
@ -75,6 +75,11 @@ export class storeTextSettings {
|
|||
type : font.asc_getFontType()
|
||||
});
|
||||
}
|
||||
|
||||
array.sort(function(a, b) {
|
||||
return (a.name.toLowerCase() > b.name.toLowerCase()) ? 1 : -1;
|
||||
});
|
||||
|
||||
this.fontsArray = array;
|
||||
}
|
||||
|
||||
|
|
|
@ -140,6 +140,10 @@ export class storeCellSettings {
|
|||
});
|
||||
}
|
||||
|
||||
array.sort(function(a, b) {
|
||||
return (a.name.toLowerCase() > b.name.toLowerCase()) ? 1 : -1;
|
||||
});
|
||||
|
||||
this.fontsArray = array;
|
||||
}
|
||||
|
||||
|
|
|
@ -74,6 +74,10 @@ export class storeTextSettings {
|
|||
});
|
||||
}
|
||||
|
||||
array.sort(function(a, b) {
|
||||
return (a.name.toLowerCase() > b.name.toLowerCase()) ? 1 : -1;
|
||||
});
|
||||
|
||||
this.fontsArray = array;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue