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

Commit

Permalink
Release v0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
timlindvall committed May 4, 2017
1 parent 771ef13 commit 04aabd6
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Change Log

### v0.2.8 (2017/05/04)
* [#323](https://github.com/linkedin/hopscotch/pull/323) Fix the rest of the deprecated gradient warnings

### v0.2.7 (2017/02/24)
* [#312](https://github.com/linkedin/hopscotch/pull/312) Generate templates without `with` keyword (now strict compatible)
* [#307](https://github.com/linkedin/hopscotch/pull/307) Avoid "Gradient has outdated syntax" error
Expand Down
Binary file added archives/hopscotch-0.2.8.tar.gz
Binary file not shown.
Binary file added archives/hopscotch-0.2.8.zip
Binary file not shown.
26 changes: 13 additions & 13 deletions dist/css/hopscotch.css
@@ -1,4 +1,4 @@
/**! hopscotch - v0.2.7
/**! hopscotch - v0.2.8
*
* Copyright 2017 LinkedIn Corp. All rights reserved.
*
Expand Down Expand Up @@ -284,19 +284,19 @@ div.hopscotch-bubble .hopscotch-nav-button.next {
background-color: #287bbc;
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#287bbc', endColorstr='#23639a');
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #287bbc), color-stop(100%, #23639a));
background-image: -webkit-linear-gradient(top, #287bbc 0%, #23639a 100%);
background-image: -moz-linear-gradient(top, #287bbc 0%, #23639a 100%);
background-image: -o-linear-gradient(top, #287bbc 0%, #23639a 100%);
background-image: linear-gradient(top, #287bbc 0%, #23639a 100%);
background-image: -webkit-linear-gradient(to bottom, #287bbc 0%, #23639a 100%);
background-image: -moz-linear-gradient(to bottom, #287bbc 0%, #23639a 100%);
background-image: -o-linear-gradient(to bottom, #287bbc 0%, #23639a 100%);
background-image: linear-gradient(to bottom, #287bbc 0%, #23639a 100%);
}
div.hopscotch-bubble .hopscotch-nav-button.next:hover {
background-color: #2672ae;
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#2672ae', endColorstr='#1e4f7e');
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2672ae), color-stop(100%, #1e4f7e));
background-image: -webkit-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
background-image: -moz-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
background-image: -o-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
background-image: linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
background-image: -webkit-linear-gradient(to bottom, #2672ae 0%, #1e4f7e 100%);
background-image: -moz-linear-gradient(to bottom, #2672ae 0%, #1e4f7e 100%);
background-image: -o-linear-gradient(to bottom, #2672ae 0%, #1e4f7e 100%);
background-image: linear-gradient(to bottom, #2672ae 0%, #1e4f7e 100%);
}
div.hopscotch-bubble .hopscotch-nav-button.prev {
border-color: #a7a7a7;
Expand All @@ -305,10 +305,10 @@ div.hopscotch-bubble .hopscotch-nav-button.prev {
background-color: #f2f2f2;
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#e9e9e9');
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(100%, #e9e9e9));
background-image: -webkit-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
background-image: -moz-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
background-image: -o-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
background-image: linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
background-image: -webkit-linear-gradient(to bottom, #f2f2f2 0%, #e9e9e9 100%);
background-image: -moz-linear-gradient(to bottom, #f2f2f2 0%, #e9e9e9 100%);
background-image: -o-linear-gradient(to bottom, #f2f2f2 0%, #e9e9e9 100%);
background-image: linear-gradient(to bottom, #f2f2f2 0%, #e9e9e9 100%);
}
div.hopscotch-bubble .hopscotch-nav-button.prev:hover {
background-color: #e8e8e8;
Expand Down
4 changes: 2 additions & 2 deletions dist/css/hopscotch.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/hopscotch.js
@@ -1,4 +1,4 @@
/**! hopscotch - v0.2.7
/**! hopscotch - v0.2.8
*
* Copyright 2017 LinkedIn Corp. All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion dist/js/hopscotch.min.js

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

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "hopscotch",
"version": "0.2.7",
"version": "0.2.8",
"description": "A framework to make it easy for developers to add product tours to their pages.",
"main": "dist/js/hopscotch.min.js",
"directories": {
Expand All @@ -26,7 +26,7 @@
"grunt": "~0.4.1",
"grunt-bump": "~0.0.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-compress": "~0.6.0",
"grunt-contrib-compress": "~1.4.1",
"grunt-contrib-connect": "^0.9.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-jasmine": "^0.9.2",
Expand Down

0 comments on commit 04aabd6

Please sign in to comment.