Skip to content
Snippets Groups Projects
Commit afce8012 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[enh] Settings: Allow to disable UI Effects

parent 6c591ab0
No related branches found
No related tags found
No related merge requests found
Pipeline #11406 failed
......@@ -271,6 +271,12 @@ angular.module('cesium.platform', ['ngIdle', 'cesium.config', 'cesium.services']
// Start settings
csSettings.ready()
.then(function(settingsData) {
// Applying UI effects, if now already disable (e.g. because of poor platform grade)
if (UIUtils.motion.enable) {
UIUtils.setEffects(settingsData.uiEffects);
}
})
]))
// Load BMA
......
......@@ -328,6 +328,8 @@ angular.module('cesium.settings.services', ['ngApi', 'cesium.config'])
startPromise = null;
// Emit event (used by plugins)
api.data.raise.ready(data);
return data;
});
return startPromise;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment