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 {
constructor(opts) {
this.opts = opts;
this.placeTop();
this.placeProfileAvatarsToTop();
this.initTabs();
this.hideProjectLimitMessage();
}
placeTop() {
placeProfileAvatarsToTop() {
$('.profile-groups-avatars').tooltip({
placement: 'top'
});
@ -28,7 +28,6 @@
path: path
});
$(this).parents('.project-limit-message').remove();
return;
});
}
}