forked from SSENSE/vue-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove using $parents methods in navigation * add jsdoc for navigation.vue * Add jsdoc comment for handleNavigation method * Update snapshots, add some semantics for navigaton and pagination, add some jsdoc * Remove scoped styles * Return scoped styles in pagination and navigation * Add vendor specific style prefixes (fixes IE10 support) * fixed pageChange event to work when swiped (SSENSE#152) * fixed pageChange event * fixed submodule bug * Fix backward advancePage w/ padding (SSENSE#110) * Fix backward advancePage w/ padding If you use a padding on the carousel items, the currentPage variable becomes a float number which goes < 0. This made impossibile to go back to the first item (it was in stuck with the 2nd slide). Using Math.ceil on the page number fixed the issue. * docs(standard): Update README.md - add table with configuration options (property, type, default, description) - add some properties in demo HTML markup to show how configuration is done * Update README.md Changed CamelCase to kebab-case in sample in ReadMe.md (because its not working). https://vuejs.org/v2/guide/components.html#camelCase-vs-kebab-case * unused duplicated methods * remove unusded comment
- Loading branch information
1 parent
3e6504d
commit bc4f41d
Showing
11 changed files
with
234 additions
and
158 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Submodule public
deleted from
0041f9
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
plugins: { | ||
'autoprefixer': {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.