Commit f43a0470 authored by Regis's avatar Regis

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

parent ee419bf4
...@@ -2,12 +2,12 @@ ...@@ -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 @@ ...@@ -28,7 +28,6 @@
path: path path: path
}); });
$(this).parents('.project-limit-message').remove(); $(this).parents('.project-limit-message').remove();
return;
}); });
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment