Skip to content

Commit

Permalink
Revert "1.9.0"
Browse files Browse the repository at this point in the history
This reverts commit a2aa3fe.
  • Loading branch information
Nick Marnik committed Jan 18, 2019
1 parent a2aa3fe commit a3131ca
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 29 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Just add a link to the css file in your `<head>`:

```html
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.9.0/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick.css"/>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.9.0/slick/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick-theme.css"/>
```

Then, before your closing ```<body>``` tag add:

```html
<script type="text/javascript" src="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.9.0/slick/slick.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick.min.js"></script>
```

#### Package Managers
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "slick",
"repo": "kenwheeler/slick",
"description": "the last carousel you'll ever need",
"version": "1.9.0",
"version": "1.8.1",
"keywords": ["ui", "jquery", "carousel", "responsive", "slider"],
"dependencies": {
"component/jquery": "*"
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
transition: all ease-in-out .3s;
opacity: .2;
}

.slick-active {
opacity: .5;
}
Expand Down Expand Up @@ -309,7 +309,7 @@
</section>

<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
<script src="./slick/slick.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./slick/slick.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(document).on('ready', function() {
$(".vertical-center-4").slick({
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "slick-carousel",
"version": "1.9.0",
"version": "1.8.1",
"description": "the last carousel you'll ever need",
"main": "slick/slick.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion slick.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"touch",
"mobile"
],
"version": "1.9.0",
"version": "1.8.1",
"author": {
"name": "Ken Wheeler",
"url": "http://kenwheeler.github.io"
Expand Down
6 changes: 3 additions & 3 deletions slick/slick.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
|___/_|_|\___|_|\_(_)/ |___/
|__/
Version: 1.9.0
Version: 1.8.1
Author: Ken Wheeler
Website: http://kenwheeler.github.io
Docs: http://kenwheeler.github.io/slick
Expand Down Expand Up @@ -1019,7 +1019,7 @@
.off('focus.slick blur.slick')
.on(
'focus.slick',
'*',
'*',
function(event) {
var $sf = $(this);

Expand All @@ -1034,7 +1034,7 @@
}
).on(
'blur.slick',
'*',
'*',
function(event) {
var $sf = $(this);

Expand Down
19 changes: 1 addition & 18 deletions slick/slick.min.js

Large diffs are not rendered by default.

0 comments on commit a3131ca

Please sign in to comment.