Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 9b86e53

Browse files
committed
Fix merge error.
1 parent 342ea31 commit 9b86e53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/views/userPageVw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ module.exports = baseVw.extend({
427427
onScroll: function() {
428428
if (this.$obContainer.scrollTop() > 400 && this.slimVisible === false ) {
429429
this.slimVisible = true;
430-
this.$('.user-page-header-slim').addClass('textOpacity1 top70');
430+
this.$('.user-page-header-slim').addClass('scrolledIntoView');
431431
this.$('.user-page-header').removeClass('shadow-inner1')
432432
.addClass('zIndex4')
433433
.find('.rowItem')
@@ -436,7 +436,7 @@ module.exports = baseVw.extend({
436436
this.$backToTop.addClass('slideUp');
437437
} else if (this.$obContainer.scrollTop() < 400 && this.slimVisible === true ) {
438438
this.slimVisible = false;
439-
this.$('.user-page-header-slim').removeClass('top70');
439+
this.$('.user-page-header-slim').removeClass('scrolledIntoView');
440440
this.$('.user-page-header').addClass('shadow-inner1')
441441
.removeClass('zIndex4')
442442
.find('.rowItem')

0 commit comments

Comments
 (0)