bootstrap-material-design 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51b40d91e1925795ebf9fcf4294960686f7a1ca6
4
- data.tar.gz: 4e569f845ea14c3de90d7b88dcd2443260dcc687
3
+ metadata.gz: e8d87823d6561cf8186444b8b0d6358871b39f0c
4
+ data.tar.gz: 616f75e3ad75302134e8e352281218f8d1ffb84c
5
5
  SHA512:
6
- metadata.gz: 4c7260b5ac4310d0c6240876924b4ad351b2576ab5b469b357b66ecb4f8665068fbf124375513476f07f4e34809623aa1e3393fd7ad575a1a86c6af4163d83c9
7
- data.tar.gz: 1370ee848f53dae439ba70ad6c950b9a9027649e5371d223157170958c9cce5607ce9918a6711cd5a5e0822ad18a0cf5363ce0fa45ff9acb4fb0dd919ca2bdaf
6
+ metadata.gz: a3421b4cf071860be002dbf71e14d5b353f22d64ef7f5a8e5feb71c170d0b573ae3acf215df700341d7bec281674f87c60ab139e22c6c805f8e229500be88953
7
+ data.tar.gz: da5df6750007e9550e913a335128cd4b1de33ccfb22b053925f2a06d24edd4ae467fccc6053147f89730d6b7cb8ed7adc18fc3fc5bef44e15f20c2b6f843ad0e
@@ -36,7 +36,8 @@
36
36
  ".navbar a:not(.withoutripple)",
37
37
  ".dropdown-menu a",
38
38
  ".nav-tabs a:not(.withoutripple)",
39
- ".withripple"
39
+ ".withripple",
40
+ ".pagination li:not(.active, .disabled) a:not(.withoutripple)"
40
41
  ].join(","),
41
42
  "inputElements": "input.form-control, textarea.form-control, select.form-control",
42
43
  "checkboxElements": ".checkbox > label > input[type=checkbox]",
@@ -173,7 +173,7 @@
173
173
  */
174
174
  event = event.originalEvent;
175
175
 
176
- if(event.touches.length !== 1) {
176
+ if(event.touches.length === 1) {
177
177
  return event.touches[0].pageX - wrapperOffset.left;
178
178
  }
179
179
 
@@ -200,7 +200,7 @@
200
200
  */
201
201
  event = event.originalEvent;
202
202
 
203
- if(event.touches.length !== 1) {
203
+ if(event.touches.length === 1) {
204
204
  return event.touches[0].pageY - wrapperOffset.top;
205
205
  }
206
206
 
@@ -0,0 +1,3 @@
1
+ @import 'bootstrap-material-design/material';
2
+ @import 'bootstrap-material-design/ripples';
3
+ @import 'bootstrap-material-design/snackbar';
@@ -4,8 +4,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'bootstrap-material-design'
7
- s.version = '0.2.0'
8
- s.date = '2015-04-13'
7
+ s.version = '0.2.1'
8
+ s.date = '2015-06-28'
9
9
  s.summary = "Material Design for Bootstrap"
10
10
  s.authors = ["Paul King"]
11
11
  s.email = 'freedomlijinfa@gmail.com'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-material-design
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul King
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-13 00:00:00.000000000 Z
11
+ date: 2015-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap-sass
@@ -45,6 +45,7 @@ files:
45
45
  - app/assets/javascripts/bootstrap-material-design/material.js
46
46
  - app/assets/javascripts/bootstrap-material-design/ripples.js
47
47
  - app/assets/javascripts/bootstrap-material-design/snackbar.js
48
+ - app/assets/stylesheets/_bootstrap-material-design.scss
48
49
  - app/assets/stylesheets/bootstrap-material-design/index.css
49
50
  - app/assets/stylesheets/bootstrap-material-design/material.css.erb
50
51
  - app/assets/stylesheets/bootstrap-material-design/ripples.css