flashgrid 4.0.5 → 4.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ebf45ce78b418eddcbfd61c47c653bd24f2482c6
4
- data.tar.gz: d142071704045f3ae8a207561a37af85ab57773c
3
+ metadata.gz: 0c09a15267a1d531459c130db7bbce1b5d6f4002
4
+ data.tar.gz: 2a373759f9ce591312120e6f3c00dd506148475e
5
5
  SHA512:
6
- metadata.gz: 86decbb604b19535da3ba52e8d35284df00641baa210d6d8eab3944880a0ba7f0bd3379f2851aeabcce20f8a098f3e954cdc1aca5115ae35b31d0e1090ece80a
7
- data.tar.gz: ccbab87fa0c2589bf692ceb14b180d34abbece34e8e75d72539db988fbef6b21c89fb49a35268df9a16145098157d87f14669c014b8b641888741960ebcf012a
6
+ metadata.gz: 550c4d08dc1157217d71597eb6bada868fb5216185f56cf8f9c3691fb099c5236eccf01ce7ca624d0ea32b48bb5d8526f31e57ca03058b345ea79d419746f426
7
+ data.tar.gz: 91ffb633deca11a2370788b021c07e1798eefa0d476113bd21514cf96096124d6178b51e08a9804db7803944f6893cf43499067f83bf1af40857d97a45dfb606
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "4.0.5"
2
+ VERSION = "4.0.6"
3
3
  end
@@ -19,7 +19,7 @@
19
19
  this.checkPosition()
20
20
  }
21
21
 
22
- Affix.VERSION = '3.3.1'
22
+ Affix.VERSION = '3.3.2'
23
23
 
24
24
  Affix.RESET = 'affix affix-top affix-bottom'
25
25
 
@@ -9,7 +9,7 @@
9
9
  $(el).on('click', dismiss, this.close)
10
10
  }
11
11
 
12
- Alert.VERSION = '3.3.1'
12
+ Alert.VERSION = '3.3.2'
13
13
 
14
14
  Alert.TRANSITION_DURATION = 150
15
15
 
@@ -10,7 +10,7 @@
10
10
  this.isLoading = false
11
11
  }
12
12
 
13
- Button.VERSION = '3.3.1'
13
+ Button.VERSION = '3.3.2'
14
14
 
15
15
  Button.DEFAULTS = {
16
16
  loadingText: 'loading...'
@@ -21,7 +21,7 @@
21
21
  .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
22
22
  }
23
23
 
24
- Carousel.VERSION = '3.3.1'
24
+ Carousel.VERSION = '3.3.2'
25
25
 
26
26
  Carousel.TRANSITION_DURATION = 600
27
27
 
@@ -19,7 +19,7 @@
19
19
  if (this.options.toggle) this.toggle()
20
20
  }
21
21
 
22
- Collapse.VERSION = '3.3.1'
22
+ Collapse.VERSION = '3.3.2'
23
23
 
24
24
  Collapse.TRANSITION_DURATION = 350
25
25
 
@@ -10,7 +10,7 @@
10
10
  $(element).on('click.bs.dropdown', this.toggle)
11
11
  }
12
12
 
13
- Dropdown.VERSION = '3.3.1'
13
+ Dropdown.VERSION = '3.3.2'
14
14
 
15
15
  Dropdown.prototype.toggle = function (e) {
16
16
  var $this = $(this)
@@ -10,7 +10,7 @@
10
10
 
11
11
  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
12
12
 
13
- Popover.VERSION = '3.3.1'
13
+ Popover.VERSION = '3.3.2'
14
14
 
15
15
  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
16
16
  placement: 'right',
@@ -77,18 +77,12 @@
77
77
 
78
78
  function Plugin(option) {
79
79
  return this.each(function () {
80
- var $this = $(this)
81
- var data = $this.data('bs.popover')
82
- var options = typeof option == 'object' && option
83
- var selector = options && options.selector
80
+ var $this = $(this)
81
+ var data = $this.data('bs.popover')
82
+ var options = typeof option == 'object' && option
84
83
 
85
84
  if (!data && option == 'destroy') return
86
- if (selector) {
87
- if (!data) $this.data('bs.popover', (data = {}))
88
- if (!data[selector]) data[selector] = new Popover(this, options)
89
- } else {
90
- if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
91
- }
85
+ if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
92
86
  if (typeof option == 'string') data[option]()
93
87
  })
94
88
  }
@@ -21,7 +21,7 @@
21
21
  this.process()
22
22
  }
23
23
 
24
- ScrollSpy.VERSION = '3.3.1'
24
+ ScrollSpy.VERSION = '3.3.2'
25
25
 
26
26
  ScrollSpy.DEFAULTS = {
27
27
  offset: 10
@@ -8,7 +8,7 @@
8
8
  this.element = $(element)
9
9
  }
10
10
 
11
- Tab.VERSION = '3.3.1'
11
+ Tab.VERSION = '3.3.2'
12
12
 
13
13
  Tab.TRANSITION_DURATION = 150
14
14
 
@@ -15,7 +15,7 @@
15
15
  this.init('tooltip', element, options)
16
16
  }
17
17
 
18
- Tooltip.VERSION = '3.3.1'
18
+ Tooltip.VERSION = '3.3.2'
19
19
 
20
20
  Tooltip.TRANSITION_DURATION = 150
21
21
 
@@ -336,10 +336,10 @@
336
336
  }
337
337
 
338
338
  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
339
- return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
340
- placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
339
+ return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
340
+ placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
341
341
  placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
342
- /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
342
+ /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
343
343
 
344
344
  }
345
345
 
@@ -435,18 +435,12 @@
435
435
 
436
436
  function Plugin(option) {
437
437
  return this.each(function () {
438
- var $this = $(this)
439
- var data = $this.data('bs.tooltip')
440
- var options = typeof option == 'object' && option
441
- var selector = options && options.selector
438
+ var $this = $(this)
439
+ var data = $this.data('bs.tooltip')
440
+ var options = typeof option == 'object' && option
442
441
 
443
442
  if (!data && option == 'destroy') return
444
- if (selector) {
445
- if (!data) $this.data('bs.tooltip', (data = {}))
446
- if (!data[selector]) data[selector] = new Tooltip(this, options)
447
- } else {
448
- if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
449
- }
443
+ if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
450
444
  if (typeof option == 'string') data[option]()
451
445
  })
452
446
  }
@@ -98,6 +98,10 @@ table {
98
98
  height: 300px;
99
99
  overflow: auto;
100
100
  }
101
+ .table .btn {
102
+ text-decoration: none !important;
103
+ text-transform: none !important;
104
+ }
101
105
 
102
106
  /* #Media Queries
103
107
  ================================================== */
@@ -183,6 +183,12 @@ blockquote small { color: rgba(136,153,166,1); }
183
183
 
184
184
  /* #Modifiers
185
185
  ================================================== */
186
+ .text-ellipsis {
187
+ overflow: hidden;
188
+ text-overflow: ellipsis;
189
+ white-space: nowrap;
190
+ width: 100%;
191
+ }
186
192
  .text-whitespaced { white-space: pre-wrap; }
187
193
 
188
194
  /* #Displays
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flashgrid
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.5
4
+ version: 4.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-07 00:00:00.000000000 Z
11
+ date: 2015-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler