Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #88 from lukaszflorczak/fix-ie11
Browse files Browse the repository at this point in the history
Fix ie11
  • Loading branch information
lukaszflorczak authored May 25, 2019
2 parents 2339cfc + 15566af commit abc5aee
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/css/app.f3f19dfe.css → docs/css/app.96f50a94.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1"><link href="//fonts.googleapis.com/css?family=Lato:300,400,700" rel=stylesheet><link rel=stylesheet href=https://use.fontawesome.com/releases/v5.8.1/css/all.css integrity=sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf crossorigin=anonymous><title>vue-agile | demo</title><meta name=description content="vue-agile is a touch-friendly, responsive, easy to use carousel component for Vue.js inspired by Slick."><link href=/vue-agile/css/app.f3f19dfe.css rel=preload as=style><link href=/vue-agile/js/app.5ce85759.js rel=preload as=script><link href=/vue-agile/js/chunk-vendors.6a6591ab.js rel=preload as=script><link href=/vue-agile/css/app.f3f19dfe.css rel=stylesheet></head><body><noscript><strong>We're sorry but app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script async defer src=https://buttons.github.io/buttons.js></script><script async src=//platform.twitter.com/widgets.js charset=utf-8></script><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1"><link href="//fonts.googleapis.com/css?family=Lato:300,400,700" rel=stylesheet><link rel=stylesheet href=https://use.fontawesome.com/releases/v5.8.1/css/all.css integrity=sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf crossorigin=anonymous><title>vue-agile | demo</title><meta name=description content="vue-agile is a touch-friendly, responsive, easy to use carousel component for Vue.js inspired by Slick."><link href=/vue-agile/css/app.96f50a94.css rel=preload as=style><link href=/vue-agile/js/app.24e4dae9.js rel=preload as=script><link href=/vue-agile/js/chunk-vendors.6a6591ab.js rel=preload as=script><link href=/vue-agile/css/app.96f50a94.css rel=stylesheet></head><body><noscript><strong>We're sorry but app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script async defer src=https://buttons.github.io/buttons.js></script><script async src=//platform.twitter.com/widgets.js charset=utf-8></script><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104121614-1', 'auto');
ga('send', 'pageview');</script><script src=/vue-agile/js/chunk-vendors.6a6591ab.js></script><script src=/vue-agile/js/app.5ce85759.js></script></body></html>
ga('send', 'pageview');</script><script src=/vue-agile/js/chunk-vendors.6a6591ab.js></script><script src=/vue-agile/js/app.24e4dae9.js></script></body></html>
2 changes: 1 addition & 1 deletion docs/js/app.5ce85759.js → docs/js/app.24e4dae9.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-agile",
"version": "1.0.8",
"version": "1.0.9",
"description": "A carousel component for Vue.js",
"author": "Łukasz Florczak <[email protected]>",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions src/Agile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,8 @@
.agile__track {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.agile__actions {
Expand All @@ -422,6 +424,10 @@
.agile__slides {
align-items: center;
display: flex;
flex-direction: row;
flex-grow: 1;
flex-shrink: 0;
flex-wrap: nowrap;
justify-content: flex-start;
}
Expand All @@ -431,6 +437,8 @@
.agile__slide {
display: block;
flex-grow: 1;
flex-shrink: 0;
}
.agile--fade .agile__slide {
Expand Down

0 comments on commit abc5aee

Please sign in to comment.