pageflow 0.11.2 → 0.11.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b91fd4ba440ef942f86425cd12308b20c8e2f92
4
- data.tar.gz: ac4be79835e029f436cd645ae7a12340844eff99
3
+ metadata.gz: f57242312848196222b17d17ea1784d8684b0fe6
4
+ data.tar.gz: 039ec61bd5fed3bb3b05a7d0827787fd1970c942
5
5
  SHA512:
6
- metadata.gz: 4d412f94f284985d712bb83f1abb67a1a9150e8aa9b9ef77deb27cd498109794624b71624d8b8bf0be1705be873be71e4111f3ad566d2fa350179f662e8f34f8
7
- data.tar.gz: 03188f0ac965c97e01d7f1b13edda03b3115c0f573de609c366eb37b4ec083412d32fd82034f7c680a92361f7d6b54d3bd361092aaef42caec62e373753511e7
6
+ metadata.gz: 2858c2fad2bd54cb0c193fbed1c4d66a1981cb363deaf662adc1f88a50ccc0d5bdeb6660c355e747b9a662f9b30fd21af842945f857b98d746df364b87db165b
7
+ data.tar.gz: c02046b4d3a60c386f950e63c6b055a3dbcdae63c57ef4fa7858c992d9b2d4caf51f2191c7a3006fee98c5d44ba832fb468c3cdad6815c8ffc5952b70f0de837
@@ -1,5 +1,14 @@
1
1
  # CHANGELOG
2
2
 
3
+ ### Version 0.11.3
4
+
5
+ 2016-11-02
6
+
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/v0.11.2...v0.11.3)
8
+
9
+ - Bug fix: Fix css class collision in widget scroll indicators
10
+ ([#668](https://github.com/codevise/pageflow/pull/668))
11
+
3
12
  ### Version 0.11.2
4
13
 
5
14
  2016-10-24
@@ -23,7 +23,7 @@
23
23
  $('li.mute', element).hide();
24
24
  $('.navigation_bar_bottom', element).css('height', '224px');
25
25
  $('.scroller', element).css('bottom', '224px');
26
- $('.scroll_indicator.bottom', element).css('bottom', '190px');
26
+ $('.navigation_scroll_indicator.bottom', element).css('bottom', '190px');
27
27
  }
28
28
 
29
29
  /* header button */
@@ -105,14 +105,14 @@
105
105
 
106
106
  var initiateIndicators = function() {
107
107
  setTimeout(function() {
108
- $('.scroll_indicator', element).show();
108
+ $('.navigation_scroll_indicator', element).show();
109
109
  toggleIndicators();
110
110
  }, 500);
111
111
  };
112
112
 
113
113
  $('.scroller', element).each(function () {
114
- var bottomIndicator = $('.scroll_indicator.bottom', element),
115
- topIndicator = $('.scroll_indicator.top', element),
114
+ var bottomIndicator = $('.navigation_scroll_indicator.bottom', element),
115
+ topIndicator = $('.navigation_scroll_indicator.top', element),
116
116
  scrollUpIntervalID, scrollDownIntervalID,
117
117
  hideOverlay = function () {
118
118
  overlays.addClass('hidden').removeClass('visible');
@@ -255,7 +255,7 @@
255
255
  /* fullscreen button */
256
256
  $('.navigation_bar_bottom .fullscreen a', element).fullscreenButton();
257
257
 
258
- $('.button, .navigation_mute, .scroll_indicator', element).on({
258
+ $('.button, .navigation_mute, .navigation_scroll_indicator', element).on({
259
259
  'touchstart mousedown': function() {
260
260
  $(this).addClass('pressed');
261
261
  },
@@ -66,13 +66,13 @@ jQuery(function($) {
66
66
  scrollToActive: '.ov_chapter'
67
67
  });
68
68
 
69
- this.element.find('.scroll_indicator.left').scrollButton({
69
+ this.element.find('.overview_scroll_indicator.left').scrollButton({
70
70
  scroller: scroller,
71
71
  page: true,
72
72
  direction: 'left'
73
73
  });
74
74
 
75
- this.element.find('.scroll_indicator.right').scrollButton({
75
+ this.element.find('.overview_scroll_indicator.right').scrollButton({
76
76
  scroller: scroller,
77
77
  page: true,
78
78
  direction: 'right'
@@ -218,7 +218,7 @@
218
218
  width: auto;
219
219
  }
220
220
 
221
- a.scroll_indicator {
221
+ a.navigation_scroll_indicator {
222
222
  opacity: 0;
223
223
  visibility: hidden;
224
224
  @include transition(opacity 0.2s linear, visibility 0.2s);
@@ -33,7 +33,7 @@
33
33
  @include transform(translate(0, 0));
34
34
  }
35
35
 
36
- .scroll_indicator {
36
+ .overview_scroll_indicator {
37
37
  position: absolute;
38
38
  bottom: 0;
39
39
  z-index: 1;
@@ -52,7 +52,7 @@ $scroll-indicator-offset: 35px;
52
52
  bottom: $bottom-height;
53
53
  }
54
54
 
55
- .scroll_indicator {
55
+ .navigation_scroll_indicator {
56
56
  height: $scroll-indicator-height;
57
57
 
58
58
  &.bottom {
@@ -69,7 +69,7 @@ $scroll-indicator-offset: 35px;
69
69
  top: $top-height + $item-height;
70
70
  }
71
71
 
72
- .scroll_indicator.top {
72
+ .navigation_scroll_indicator.top {
73
73
  top: $top-height + $item-height - $scroll-indicator-offset;
74
74
  }
75
75
  }
@@ -101,7 +101,7 @@
101
101
  height: auto;
102
102
  }
103
103
 
104
- .scroll_indicator {
104
+ .navigation_scroll_indicator {
105
105
  @include background-icon-center($font-size: 25px, $color: $scroll-indicator-color);
106
106
  font-weight: bold;
107
107
  position: absolute;
@@ -10,17 +10,17 @@
10
10
  height: 42px;
11
11
  }
12
12
 
13
- .scroll_indicator {
13
+ .navigation_scroll_indicator {
14
14
  @extend %pageflow_sprite_icon;
15
15
  width: 45px;
16
16
  right: 20px;
17
17
  }
18
18
 
19
- .scroll_indicator.top {
19
+ .navigation_scroll_indicator.top {
20
20
  @include pageflow-sprite-icon-arrow-up($offset: -5px);
21
21
  }
22
22
 
23
- .scroll_indicator.bottom {
23
+ .navigation_scroll_indicator.bottom {
24
24
  @include pageflow-sprite-icon-arrow-down($offset: -5px);
25
25
  }
26
26
 
@@ -29,7 +29,7 @@
29
29
  }
30
30
  }
31
31
 
32
- .scroll_indicator {
32
+ .overview_scroll_indicator {
33
33
  &:before {
34
34
  font-weight: bold;
35
35
  font-size: 29px;
@@ -13,7 +13,7 @@
13
13
  }
14
14
  }
15
15
 
16
- .scroll_indicator {
16
+ .overview_scroll_indicator {
17
17
  &.left {
18
18
  @include pageflow-sprite-icon-arrow-left;
19
19
  }
@@ -161,12 +161,12 @@ $nav-color: #9c9c9c;
161
161
  top: 224px;
162
162
  }
163
163
 
164
- .scroll_indicator.top {
164
+ .navigation_scroll_indicator.top {
165
165
  top: 189px;
166
166
  }
167
167
  }
168
168
 
169
- a.scroll_indicator {
169
+ a.navigation_scroll_indicator {
170
170
  $normal-offset: -14px;
171
171
  $hover-offset: -115px;
172
172
  $pressed-offset: -64px;
@@ -1,4 +1,4 @@
1
- <a class="scroll_indicator bottom" tabindex="2">
1
+ <a class="navigation_scroll_indicator bottom" tabindex="2">
2
2
  <span class="hint"><%= t('pageflow.public.scroll_down') %></span>
3
3
  </a>
4
4
  <ul class="navigation_bar_bottom">
@@ -38,6 +38,6 @@
38
38
  </a>
39
39
  </li>
40
40
  </ul>
41
- <a class="scroll_indicator top" tabindex="2">
41
+ <a class="navigation_scroll_indicator top" tabindex="2">
42
42
  <span class="hint"><%= t('pageflow.public.scroll_up') %></span>
43
43
  </a>
@@ -5,7 +5,11 @@
5
5
  </a>
6
6
  <h2><%= t('pageflow.public.overview') %></h2>
7
7
 
8
- <a class="scroll_indicator left button" tabindex="1" title="<%= t('pageflow.public.scroll_left') %>"><span class="hint"><%= t('pageflow.public.scroll_left') %></span></a>
8
+ <a class="overview_scroll_indicator left button"
9
+ tabindex="1"
10
+ title="<%= t('pageflow.public.scroll_left') %>">
11
+ <span class="hint"><%= t('pageflow.public.scroll_left') %></span>
12
+ </a>
9
13
 
10
14
  <div class="wrapper">
11
15
  <div class="scroller">
@@ -15,6 +19,10 @@
15
19
  </div>
16
20
  </div>
17
21
 
18
- <a class="scroll_indicator right button" tabindex="1" title="<%= t('pageflow.public.scroll_right') %>"><span class="hint"><%= t('pageflow.public.scroll_right') %></span></a>
22
+ <a class="overview_scroll_indicator right button"
23
+ tabindex="1"
24
+ title="<%= t('pageflow.public.scroll_right') %>">
25
+ <span class="hint"><%= t('pageflow.public.scroll_right') %></span>
26
+ </a>
19
27
  </div>
20
28
  </section>
@@ -1,3 +1,3 @@
1
1
  module Pageflow
2
- VERSION = '0.11.2'
2
+ VERSION = '0.11.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.2
4
+ version: 0.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codevise Solutions Ltd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-24 00:00:00.000000000 Z
11
+ date: 2016-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails