Skip to content

Commit

Permalink
💎 Release new version v0.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Juszczak <[email protected]>
  • Loading branch information
apertureless committed Jan 18, 2017
1 parent 0d5f89c commit a18dacf
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
23 changes: 18 additions & 5 deletions dist/vue-parallaxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,22 @@ return /******/ (function(modules) { // webpackBootstrap
default: 70,
type: Number,
required: false
},
sectionClass: {
type: String,
default: 'Masthead'
},
containerClass: {
type: String,
default: 'Masthead__image'
},
parallaxClass: {
type: String,
default: 'is-parallax'
},
fixedClass: {
type: String,
default: 'is-fixed'
}
},

Expand Down Expand Up @@ -530,16 +546,13 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._c;
return _c('section', {
ref: "block",
staticClass: "Masthead",
class: [_vm.sectionClass],
style: ({
height: _vm.sectionHeight + 'vh'
})
}, [_c('div', {
ref: "parallax",
staticClass: "Masthead__image",
class: {
'is-parallax': _vm.parallax, 'is-fixed': _vm.fixed
}
class: [_vm.parallax ? _vm.parallaxClass : '', _vm.fixed ? _vm.fixedClass : '', _vm.containerClass]
}, [_vm._t("default")], 2)])
},staticRenderFns: []}
module.exports.render._withStripped = true
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-parallaxy.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-parallaxy",
"version": "0.1.2",
"version": "0.1.3",
"description": "Vue 2 component for parallax scrolling effects",
"author": "Jakub Juszczak <[email protected]>",
"repository": {
Expand Down

0 comments on commit a18dacf

Please sign in to comment.