Merge pull request #858 from dod-ccpo/sticky-to

Sticky CTA Header
This commit is contained in:
richard-dds
2019-06-04 15:28:49 -04:00
committed by GitHub
9 changed files with 75 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import ally from 'ally.js'
import classes from '../styles/atat.scss'
import Vue from 'vue/dist/vue'
import VTooltip from 'v-tooltip'
import stickybits from 'stickybits'
import dodlogin from './components/dodlogin'
import levelofwarrant from './components/levelofwarrant'
@@ -124,4 +125,12 @@ const app = new Vue({
})
},
delimiters: ['!{', '}'],
directives: {
sticky: {
inserted: el => {
stickybits(el)
},
},
},
})