removed null return - renamed 'placeTop' to 'placeProfileAvatarsToTop'

This commit is contained in:
Regis 2016-09-01 14:51:53 -06:00
parent ee419bf48b
commit f43a0470bd
1 changed files with 2 additions and 3 deletions

View File

@ -2,12 +2,12 @@
global.User = class { global.User = class {
constructor(opts) { constructor(opts) {
this.opts = opts; this.opts = opts;
this.placeTop(); this.placeProfileAvatarsToTop();
this.initTabs(); this.initTabs();
this.hideProjectLimitMessage(); this.hideProjectLimitMessage();
} }
placeTop() { placeProfileAvatarsToTop() {
$('.profile-groups-avatars').tooltip({ $('.profile-groups-avatars').tooltip({
placement: 'top' placement: 'top'
}); });
@ -28,7 +28,6 @@
path: path path: path
}); });
$(this).parents('.project-limit-message').remove(); $(this).parents('.project-limit-message').remove();
return;
}); });
} }
} }