Skip to content

Commit

Permalink
After merge correction
Browse files Browse the repository at this point in the history
  • Loading branch information
ger-benjamin committed Feb 19, 2018
1 parent 7859926 commit da45ddc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contribs/gmf/src/authentication/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ gmf.authentication.component.AuthenticationController_ = class {
/**
* @private
*/
onUserChange() {
onUserChange_() {
if (this.gmfUser.is_password_changed === false && this.forcePasswordChange) {
const gettextCatalog = this.gettextCatalog;
const msg = gettextCatalog.getString('You must change your password.');
Expand Down
4 changes: 2 additions & 2 deletions contribs/gmf/src/controllers/AbstractAppController.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ gmf.controllers.AbstractAppController = function(config, $scope, $injector) {
* @private
*/
this.updateCurrentBackgroundLayer_ = function(skipPermalink) {
this.gmfThemes_.getBgLayers(this.dimensions).then((layers) => {
this.gmfThemes_.getBgLayers().then((layers) => {
let background;
if (!skipPermalink) {
// get the background from the permalink
Expand Down Expand Up @@ -645,7 +645,7 @@ gmf.controllers.AbstractAppController.prototype.initLanguage = function() {
* @private
*/
gmf.controllers.AbstractAppController.prototype.setDefaultBackground_ = function(theme) {
this.gmfThemes_.getBgLayers(this.dimensions).then((layers) => {
this.gmfThemes_.getBgLayers().then((layers) => {
let layer;

// get the background from the permalink
Expand Down
1 change: 1 addition & 0 deletions contribs/gmf/src/print/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ goog.require('ngeo.print.Service');
goog.require('ngeo.print.Utils');
goog.require('ngeo.query.MapQuerent');
goog.require('ol.array');
goog.require('ol.layer.Image');
goog.require('ol.layer.Tile');
goog.require('ol.layer.Group');
goog.require('ol.Observable');
Expand Down

0 comments on commit da45ddc

Please sign in to comment.