Make topbar sticky and set sticky cta header so it sticks below topbar
This commit is contained in:
@@ -130,8 +130,12 @@ const app = new Vue({
|
||||
|
||||
directives: {
|
||||
sticky: {
|
||||
inserted: el => {
|
||||
stickybits(el)
|
||||
inserted: (el, binding) => {
|
||||
var customAttributes
|
||||
if (binding.expression) {
|
||||
customAttributes = JSON.parse(binding.expression)
|
||||
}
|
||||
stickybits(el, customAttributes)
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Reference in New Issue
Block a user