Skip to content

Commit

Permalink
Revert regression introduced in ngeo displayWindow component (#5447)
Browse files Browse the repository at this point in the history
Revert regression introduced in ngeo displayWindow component
  • Loading branch information
adube committed Jan 22, 2020
1 parent 7908a7d commit c245054
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/message/displaywindowComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,67 +74,67 @@ class Controller {
/**
* @type {boolean}
*/
this.clearOnClose = false;
this.clearOnClose;

/**
* @type {?string}
*/
this.content = null;
this.content;

/**
* @type {?string}
*/
this.contentTemplate = null;
this.contentTemplate;

/**
* @type {?angular.IScope}
*/
this.contentScope = null;
this.contentScope;

/**
* @type {boolean}
*/
this.draggable = false;
this.draggable;

/**
* @type {Element|string}
*/
this.draggableContainment = '';
this.draggableContainment;

/**
* @type {boolean}
*/
this.desktop = false;
this.desktop;

/**
* @type {string}
*/
this.height = '';
this.height;

/**
* @type {boolean}
*/
this.open = false;
this.open;

/**
* @type {boolean}
*/
this.resizable = false;
this.resizable;

/**
* @type {?string}
*/
this.title = null;
this.title;

/**
* @type {?string}
*/
this.url = null;
this.url;

/**
* @type {string}
*/
this.width = '';
this.width;


// === Injected Properties ===
Expand Down

0 comments on commit c245054

Please sign in to comment.