[mobile] Fix bug 44353
This commit is contained in:
parent
6cc7d096d2
commit
e21c97050c
|
@ -608,6 +608,7 @@ define([
|
||||||
if (me.api) {
|
if (me.api) {
|
||||||
me.api.Resize();
|
me.api.Resize();
|
||||||
me.api.zoomFitToWidth();
|
me.api.zoomFitToWidth();
|
||||||
|
me.api.asc_GetDefaultTableStyles && _.defer(function () {me.api.asc_GetDefaultTableStyles()});
|
||||||
}
|
}
|
||||||
|
|
||||||
me.applyLicense();
|
me.applyLicense();
|
||||||
|
|
|
@ -83,15 +83,6 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
initEvents: function () {
|
initEvents: function () {
|
||||||
var me = this;
|
|
||||||
|
|
||||||
if (!_initDefaultStyles) {
|
|
||||||
_initDefaultStyles = true;
|
|
||||||
_styles = [];
|
|
||||||
|
|
||||||
me.api.asc_GetDefaultTableStyles();
|
|
||||||
}
|
|
||||||
|
|
||||||
$('#add-table li').single('click', _.buffered(this.onStyleClick, 100, this));
|
$('#add-table li').single('click', _.buffered(this.onStyleClick, 100, this));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -178,6 +169,11 @@ define([
|
||||||
// API handlers
|
// API handlers
|
||||||
|
|
||||||
onApiInitTemplates: function(templates) {
|
onApiInitTemplates: function(templates) {
|
||||||
|
if (!_initDefaultStyles) {
|
||||||
|
_initDefaultStyles = true;
|
||||||
|
_styles = [];
|
||||||
|
}
|
||||||
|
|
||||||
if (_styles.length < 1) {
|
if (_styles.length < 1) {
|
||||||
_.each(templates, function(template){
|
_.each(templates, function(template){
|
||||||
_styles.push({
|
_styles.push({
|
||||||
|
|
|
@ -553,6 +553,7 @@ define([
|
||||||
if (me.api) {
|
if (me.api) {
|
||||||
me.api.Resize();
|
me.api.Resize();
|
||||||
me.api.zoomFitToPage();
|
me.api.zoomFitToPage();
|
||||||
|
me.api.asc_GetDefaultTableStyles && _.defer(function () {me.api.asc_GetDefaultTableStyles()});
|
||||||
}
|
}
|
||||||
|
|
||||||
me.applyLicense();
|
me.applyLicense();
|
||||||
|
|
|
@ -76,13 +76,6 @@ define([
|
||||||
initEvents: function () {
|
initEvents: function () {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
if (!_initDefaultStyles) {
|
|
||||||
_initDefaultStyles = true;
|
|
||||||
_styles = [];
|
|
||||||
|
|
||||||
me.api.asc_GetDefaultTableStyles && me.api.asc_GetDefaultTableStyles();
|
|
||||||
}
|
|
||||||
|
|
||||||
$('#add-table li').single('click', _.buffered(me.onStyleClick, 100, me));
|
$('#add-table li').single('click', _.buffered(me.onStyleClick, 100, me));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -165,6 +158,10 @@ define([
|
||||||
// API handlers
|
// API handlers
|
||||||
|
|
||||||
onApiInitTemplates: function(templates){
|
onApiInitTemplates: function(templates){
|
||||||
|
if (!_initDefaultStyles) {
|
||||||
|
_initDefaultStyles = true;
|
||||||
|
_styles = [];
|
||||||
|
}
|
||||||
if (_styles.length < 1) {
|
if (_styles.length < 1) {
|
||||||
_.each(templates, function(template){
|
_.each(templates, function(template){
|
||||||
_styles.push({
|
_styles.push({
|
||||||
|
|
Loading…
Reference in a new issue