Remove unnecessary console log

This commit is contained in:
Jeff Wong 2018-04-20 13:38:33 -07:00
parent 0d3d9d91c6
commit 94ff575bdd
1 changed files with 0 additions and 1 deletions

View File

@ -141,7 +141,6 @@ export default Ember.Mixin.create({
position.top -= $('html').scrollTop();
//if content is fixed and will be cut off on the bottom, display it above...
if(position.top + height + verticalAdjustments > $(window).height() - 50) {
console.log("adjusting... by " + (height + verticalAdjustments + 48));
position.bottom = $(window).height() - (target.offset().top - $('html').scrollTop());
if(verticalAdjustments > 0) {
position.bottom += 48;