[PE mobile] Recovering deleted changes
This commit is contained in:
parent
4aabcdf8bb
commit
f0d343403b
|
@ -5,7 +5,7 @@ import { f7 } from "framework7-react";
|
||||||
import { withTranslation } from 'react-i18next';
|
import { withTranslation } from 'react-i18next';
|
||||||
import CollaborationController from '../../../../common/mobile/lib/controller/Collaboration.jsx'
|
import CollaborationController from '../../../../common/mobile/lib/controller/Collaboration.jsx'
|
||||||
|
|
||||||
@inject("storeFocusObjects", "storeAppOptions", "storePresentationInfo", "storePresentationSettings", "storeSlideSettings", "storeTextSettings", "storeTableSettings", "storeChartSettings")
|
@inject("storeFocusObjects", "storeAppOptions", "storePresentationInfo", "storePresentationSettings", "storeSlideSettings", "storeTextSettings", "storeTableSettings", "storeChartSettings", "storeLinkSettings")
|
||||||
class MainController extends Component {
|
class MainController extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
|
@ -299,6 +299,12 @@ class MainController extends Component {
|
||||||
storeTextSettings.resetLineSpacing(vc);
|
storeTextSettings.resetLineSpacing(vc);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//link settings
|
||||||
|
const storeLinkSettings = this.props.storeLinkSettings;
|
||||||
|
this.api.asc_registerCallback('asc_onCanAddHyperlink', (value) => {
|
||||||
|
storeLinkSettings.canAddHyperlink(value);
|
||||||
|
});
|
||||||
|
|
||||||
// Table settings
|
// Table settings
|
||||||
|
|
||||||
const storeTableSettings = this.props.storeTableSettings;
|
const storeTableSettings = this.props.storeTableSettings;
|
||||||
|
|
Loading…
Reference in a new issue