forum-navbar.js 366 B

1234567891011121314151617
  1. import Ember from 'ember';
  2. export default Ember.Component.extend({
  3. classNames: 'navbar-spacer',
  4. affixNavbar: function() {
  5. // take navbar's height in document
  6. this.$().height(this.$().height());
  7. // affix navbar
  8. this.$('.navbar').affix({
  9. offset: {
  10. top: this.$('.navbar').offset().top
  11. }
  12. });
  13. }.on('didInsertElement')
  14. });