bootstrap-slider-rails 0.0.1.1 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This Gem integrates [Seiyara's fork](https://github.com/seiyria/bootstrap-slider) of [Bootstrap Slider](http://www.eyecon.ro/bootstrap-slider/). The original has no public Github Repo, issues tracking etc.
4
4
 
5
- It integrates this fork with your Rails project and is versioned to track the fork's versioning.
5
+ It integrates this fork with your Rails project and is versioned to track the fork's version.
6
6
 
7
7
  ## Installation
8
8
 
@@ -31,11 +31,9 @@ Require the JavaScript files from your `application.js` or wherever needed using
31
31
  Require the CSS files from your `application.scss` or wherever needed using:
32
32
 
33
33
  ```
34
- *= require slider
34
+ *= require bootstrap-slider
35
35
  ```
36
36
 
37
- *Note: This naming inconsistancy is part of Bootstrap Slider. I have opened a ticket [here](https://github.com/seiyria/bootstrap-slider/issues/41)
38
-
39
37
  ## Contributing
40
38
 
41
39
  1. Fork it
@@ -1,5 +1,5 @@
1
1
  module BootstrapSlider
2
2
  module Rails
3
- VERSION = "0.0.1.1"
3
+ VERSION = "1.9.0"
4
4
  end
5
5
  end
@@ -68,7 +68,7 @@
68
68
  }
69
69
  .slider.slider-disabled .slider-handle {
70
70
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dfdfdf), to(#bebebe));
71
- background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
71
+ background-image: -webkit-linear-gradient(top, #dfdfdf, 0%, #bebebe, 100%);
72
72
  background-image: -moz-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
73
73
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
74
74
  background-repeat: repeat-x;
@@ -76,7 +76,7 @@
76
76
  }
77
77
  .slider.slider-disabled .slider-track {
78
78
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e5e5e5), to(#e9e9e9));
79
- background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
79
+ background-image: -webkit-linear-gradient(top, #e5e5e5, 0%, #e9e9e9, 100%);
80
80
  background-image: -moz-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
81
81
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
82
82
  background-repeat: repeat-x;
@@ -92,7 +92,7 @@
92
92
  position: absolute;
93
93
  cursor: pointer;
94
94
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#f9f9f9));
95
- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
95
+ background-image: -webkit-linear-gradient(top, #f5f5f5, 0%, #f9f9f9, 100%);
96
96
  background-image: -moz-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
97
97
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
98
98
  background-repeat: repeat-x;
@@ -104,7 +104,7 @@
104
104
  .slider-selection {
105
105
  position: absolute;
106
106
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f9f9f9), to(#f5f5f5));
107
- background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
107
+ background-image: -webkit-linear-gradient(top, #f9f9f9, 0%, #f5f5f5, 100%);
108
108
  background-image: -moz-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
109
109
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
110
110
  background-repeat: repeat-x;
@@ -121,7 +121,7 @@
121
121
  width: 20px;
122
122
  height: 20px;
123
123
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#149bdf), to(#0480be));
124
- background-image: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
124
+ background-image: -webkit-linear-gradient(top, #149bdf, 0%, #0480be, 100%);
125
125
  background-image: -moz-linear-gradient(top, #149bdf 0%, #0480be 100%);
126
126
  background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
127
127
  background-repeat: repeat-x;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-slider-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.1
4
+ version: 1.9.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -80,7 +80,7 @@ files:
80
80
  - bootstrap-slider-rails.gemspec
81
81
  - lib/bootstrap-slider-rails.rb
82
82
  - lib/bootstrap-slider-rails/version.rb
83
- - vendor/assets/css/slider.css
83
+ - vendor/assets/css/bootstrap-slider.css
84
84
  - vendor/assets/javascripts/bootstrap-slider.js
85
85
  homepage: http://github.com/stationkeeping/bootstrap-slider-rails
86
86
  licenses: