pull/8101/head
Karl Prieb 8 years ago
parent ab717b8a54
commit 9a2f56dd8e
  1. 2
      packages/rocketchat-ui-message/client/messageBox.js
  2. 2
      packages/rocketchat-ui-sidenav/client/accountBox.js
  3. 4
      packages/rocketchat-ui/client/views/app/popover.js

@ -1,4 +1,4 @@
/* globals fileUpload KonchatNotification chatMessages */
/* globals fileUpload KonchatNotification chatMessages popover */
import toastr from 'toastr';
import moment from 'moment';

@ -1,3 +1,5 @@
/* globals popover */
Template.accountBox.helpers({
myUserInfo() {
if (Meteor.user() == null && RocketChat.settings.get('Accounts_AllowAnonymousRead')) {

@ -9,7 +9,6 @@ this.popover = {
Blaze.remove(this.renderedPopover);
const activeElement = this.renderedPopover.dataVar.curValue.activeElement;
if (activeElement) {
$(activeElement).removeClass('active');
}
@ -23,8 +22,7 @@ Template.popover.onRendered(function() {
}
});
const activeElement = this.data.activeElement
const activeElement = this.data.activeElement;
const popoverContent = this.firstNode.children[0];
const position = this.data.position;
const customCSSProperties = this.data.customCSSProperties;

Loading…
Cancel
Save