quantum 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/lib/quantum/version.rb +1 -1
  3. data/vendor/assets/javascripts/alert.js +2 -2
  4. data/vendor/assets/javascripts/collapse.js +2 -2
  5. data/vendor/assets/javascripts/date_picker.js +0 -0
  6. data/vendor/assets/javascripts/dropdown.js +2 -2
  7. data/vendor/assets/javascripts/file_input.js +0 -0
  8. data/vendor/assets/javascripts/map.js +63 -15
  9. data/vendor/assets/javascripts/modal.js +2 -2
  10. data/vendor/assets/javascripts/popover.js +2 -2
  11. data/vendor/assets/javascripts/tab.js +2 -2
  12. data/vendor/assets/javascripts/time_picker.js +0 -0
  13. data/vendor/assets/javascripts/tooltip.js +2 -2
  14. data/vendor/assets/javascripts/transitions.js +2 -2
  15. data/vendor/assets/stylesheets/alert.css.scss +0 -0
  16. data/vendor/assets/stylesheets/breadcrumb.css.scss +1 -1
  17. data/vendor/assets/stylesheets/button.css.scss +0 -0
  18. data/vendor/assets/stylesheets/code.css.scss +7 -5
  19. data/vendor/assets/stylesheets/collapse.css.scss +0 -0
  20. data/vendor/assets/stylesheets/datepicker.css.scss +0 -0
  21. data/vendor/assets/stylesheets/dropdown.css.scss +0 -0
  22. data/vendor/assets/stylesheets/file_input.css.scss +0 -0
  23. data/vendor/assets/stylesheets/footer.css.scss +0 -0
  24. data/vendor/assets/stylesheets/form.css.scss +0 -0
  25. data/vendor/assets/stylesheets/grid.css.scss +1 -0
  26. data/vendor/assets/stylesheets/header.css.scss +1 -1
  27. data/vendor/assets/stylesheets/icon.css.scss +0 -0
  28. data/vendor/assets/stylesheets/image.css.scss +0 -0
  29. data/vendor/assets/stylesheets/label_and_badge.css.scss +0 -0
  30. data/vendor/assets/stylesheets/link.css.scss +4 -4
  31. data/vendor/assets/stylesheets/list.css.scss +0 -0
  32. data/vendor/assets/stylesheets/map.css.scss +0 -0
  33. data/vendor/assets/stylesheets/modal.css.scss +0 -0
  34. data/vendor/assets/stylesheets/pagination.css.scss +0 -0
  35. data/vendor/assets/stylesheets/popover.css.scss +0 -0
  36. data/vendor/assets/stylesheets/progress.css.scss +0 -0
  37. data/vendor/assets/stylesheets/reset.css.scss +3 -3
  38. data/vendor/assets/stylesheets/tab.css.scss +0 -0
  39. data/vendor/assets/stylesheets/table.css.scss +0 -0
  40. data/vendor/assets/stylesheets/timepicker.css.scss +0 -0
  41. data/vendor/assets/stylesheets/tooltip.css.scss +0 -0
  42. data/vendor/assets/stylesheets/transitions.css.scss +0 -0
  43. data/vendor/assets/stylesheets/trunk.css.scss +0 -0
  44. data/vendor/assets/stylesheets/typography.css.scss +43 -19
  45. metadata +3 -15
  46. data/vendor/assets/.keep +0 -0
  47. data/vendor/assets/javascripts/chart.js +0 -1424
  48. data/vendor/assets/javascripts/input_mask.js +0 -355
  49. data/vendor/assets/javascripts/qrcode.js +0 -89
  50. data/vendor/assets/javascripts/qrcoder.js +0 -1237
  51. data/vendor/assets/javascripts/typeahead.js +0 -335
  52. data/vendor/assets/javascripts/typer.js +0 -260
  53. data/vendor/assets/javascripts/wizard.js +0 -114
  54. data/vendor/assets/stylesheets/chart.css.scss +0 -10
  55. data/vendor/assets/stylesheets/qrcode.css.scss +0 -7
  56. data/vendor/assets/stylesheets/typeahead.css.scss +0 -7
  57. data/vendor/assets/stylesheets/wizard.css.scss +0 -27
@@ -1,335 +0,0 @@
1
- /* =============================================================
2
- * bootstrap-typeahead.js v2.3.2
3
- * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
- * =============================================================
5
- * Copyright 2012 Twitter, Inc.
6
- *
7
- * Licensed under the Apache License, Version 2.0 (the "License");
8
- * you may not use this file except in compliance with the License.
9
- * You may obtain a copy of the License at
10
- *
11
- * http://www.apache.org/licenses/LICENSE-2.0
12
- *
13
- * Unless required by applicable law or agreed to in writing, software
14
- * distributed under the License is distributed on an "AS IS" BASIS,
15
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
- * See the License for the specific language governing permissions and
17
- * limitations under the License.
18
- * ============================================================ */
19
-
20
-
21
- !function($){
22
-
23
- "use strict"; // jshint ;_;
24
-
25
-
26
- /* TYPEAHEAD PUBLIC CLASS DEFINITION
27
- * ================================= */
28
-
29
- var Typeahead = function (element, options) {
30
- this.$element = $(element)
31
- this.options = $.extend({}, $.fn.typeahead.defaults, options)
32
- this.matcher = this.options.matcher || this.matcher
33
- this.sorter = this.options.sorter || this.sorter
34
- this.highlighter = this.options.highlighter || this.highlighter
35
- this.updater = this.options.updater || this.updater
36
- this.source = this.options.source
37
- this.$menu = $(this.options.menu)
38
- this.shown = false
39
- this.listen()
40
- }
41
-
42
- Typeahead.prototype = {
43
-
44
- constructor: Typeahead
45
-
46
- , select: function () {
47
- var val = this.$menu.find('.active').attr('data-value')
48
- this.$element
49
- .val(this.updater(val))
50
- .change()
51
- return this.hide()
52
- }
53
-
54
- , updater: function (item) {
55
- return item
56
- }
57
-
58
- , show: function () {
59
- var pos = $.extend({}, this.$element.position(), {
60
- height: this.$element[0].offsetHeight
61
- })
62
-
63
- this.$menu
64
- .insertAfter(this.$element)
65
- .css({
66
- top: pos.top + pos.height
67
- , left: pos.left
68
- })
69
- .show()
70
-
71
- this.shown = true
72
- return this
73
- }
74
-
75
- , hide: function () {
76
- this.$menu.hide()
77
- this.shown = false
78
- return this
79
- }
80
-
81
- , lookup: function (event) {
82
- var items
83
-
84
- this.query = this.$element.val()
85
-
86
- if (!this.query || this.query.length < this.options.minLength) {
87
- return this.shown ? this.hide() : this
88
- }
89
-
90
- items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
91
-
92
- return items ? this.process(items) : this
93
- }
94
-
95
- , process: function (items) {
96
- var that = this
97
-
98
- items = $.grep(items, function (item) {
99
- return that.matcher(item)
100
- })
101
-
102
- items = this.sorter(items)
103
-
104
- if (!items.length) {
105
- return this.shown ? this.hide() : this
106
- }
107
-
108
- return this.render(items.slice(0, this.options.items)).show()
109
- }
110
-
111
- , matcher: function (item) {
112
- return ~item.toLowerCase().indexOf(this.query.toLowerCase())
113
- }
114
-
115
- , sorter: function (items) {
116
- var beginswith = []
117
- , caseSensitive = []
118
- , caseInsensitive = []
119
- , item
120
-
121
- while (item = items.shift()) {
122
- if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item)
123
- else if (~item.indexOf(this.query)) caseSensitive.push(item)
124
- else caseInsensitive.push(item)
125
- }
126
-
127
- return beginswith.concat(caseSensitive, caseInsensitive)
128
- }
129
-
130
- , highlighter: function (item) {
131
- var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
132
- return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
133
- return '<strong>' + match + '</strong>'
134
- })
135
- }
136
-
137
- , render: function (items) {
138
- var that = this
139
-
140
- items = $(items).map(function (i, item) {
141
- i = $(that.options.item).attr('data-value', item)
142
- i.find('a').html(that.highlighter(item))
143
- return i[0]
144
- })
145
-
146
- items.first().addClass('active')
147
- this.$menu.html(items)
148
- return this
149
- }
150
-
151
- , next: function (event) {
152
- var active = this.$menu.find('.active').removeClass('active')
153
- , next = active.next()
154
-
155
- if (!next.length) {
156
- next = $(this.$menu.find('li')[0])
157
- }
158
-
159
- next.addClass('active')
160
- }
161
-
162
- , prev: function (event) {
163
- var active = this.$menu.find('.active').removeClass('active')
164
- , prev = active.prev()
165
-
166
- if (!prev.length) {
167
- prev = this.$menu.find('li').last()
168
- }
169
-
170
- prev.addClass('active')
171
- }
172
-
173
- , listen: function () {
174
- this.$element
175
- .on('focus', $.proxy(this.focus, this))
176
- .on('blur', $.proxy(this.blur, this))
177
- .on('keypress', $.proxy(this.keypress, this))
178
- .on('keyup', $.proxy(this.keyup, this))
179
-
180
- if (this.eventSupported('keydown')) {
181
- this.$element.on('keydown', $.proxy(this.keydown, this))
182
- }
183
-
184
- this.$menu
185
- .on('click', $.proxy(this.click, this))
186
- .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
187
- .on('mouseleave', 'li', $.proxy(this.mouseleave, this))
188
- }
189
-
190
- , eventSupported: function(eventName) {
191
- var isSupported = eventName in this.$element
192
- if (!isSupported) {
193
- this.$element.setAttribute(eventName, 'return;')
194
- isSupported = typeof this.$element[eventName] === 'function'
195
- }
196
- return isSupported
197
- }
198
-
199
- , move: function (e) {
200
- if (!this.shown) return
201
-
202
- switch(e.keyCode) {
203
- case 9: // tab
204
- case 13: // enter
205
- case 27: // escape
206
- e.preventDefault()
207
- break
208
-
209
- case 38: // up arrow
210
- e.preventDefault()
211
- this.prev()
212
- break
213
-
214
- case 40: // down arrow
215
- e.preventDefault()
216
- this.next()
217
- break
218
- }
219
-
220
- e.stopPropagation()
221
- }
222
-
223
- , keydown: function (e) {
224
- this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
225
- this.move(e)
226
- }
227
-
228
- , keypress: function (e) {
229
- if (this.suppressKeyPressRepeat) return
230
- this.move(e)
231
- }
232
-
233
- , keyup: function (e) {
234
- switch(e.keyCode) {
235
- case 40: // down arrow
236
- case 38: // up arrow
237
- case 16: // shift
238
- case 17: // ctrl
239
- case 18: // alt
240
- break
241
-
242
- case 9: // tab
243
- case 13: // enter
244
- if (!this.shown) return
245
- this.select()
246
- break
247
-
248
- case 27: // escape
249
- if (!this.shown) return
250
- this.hide()
251
- break
252
-
253
- default:
254
- this.lookup()
255
- }
256
-
257
- e.stopPropagation()
258
- e.preventDefault()
259
- }
260
-
261
- , focus: function (e) {
262
- this.focused = true
263
- }
264
-
265
- , blur: function (e) {
266
- this.focused = false
267
- if (!this.mousedover && this.shown) this.hide()
268
- }
269
-
270
- , click: function (e) {
271
- e.stopPropagation()
272
- e.preventDefault()
273
- this.select()
274
- this.$element.focus()
275
- }
276
-
277
- , mouseenter: function (e) {
278
- this.mousedover = true
279
- this.$menu.find('.active').removeClass('active')
280
- $(e.currentTarget).addClass('active')
281
- }
282
-
283
- , mouseleave: function (e) {
284
- this.mousedover = false
285
- if (!this.focused && this.shown) this.hide()
286
- }
287
-
288
- }
289
-
290
-
291
- /* TYPEAHEAD PLUGIN DEFINITION
292
- * =========================== */
293
-
294
- var old = $.fn.typeahead
295
-
296
- $.fn.typeahead = function (option) {
297
- return this.each(function () {
298
- var $this = $(this)
299
- , data = $this.data('typeahead')
300
- , options = typeof option == 'object' && option
301
- if (!data) $this.data('typeahead', (data = new Typeahead(this, options)))
302
- if (typeof option == 'string') data[option]()
303
- })
304
- }
305
-
306
- $.fn.typeahead.defaults = {
307
- source: []
308
- , items: 8
309
- , menu: '<ul class="typeahead dropdown-menu"></ul>'
310
- , item: '<li><a href="#"></a></li>'
311
- , minLength: 1
312
- }
313
-
314
- $.fn.typeahead.Constructor = Typeahead
315
-
316
-
317
- /* TYPEAHEAD NO CONFLICT
318
- * =================== */
319
-
320
- $.fn.typeahead.noConflict = function () {
321
- $.fn.typeahead = old
322
- return this
323
- }
324
-
325
-
326
- /* TYPEAHEAD DATA-API
327
- * ================== */
328
-
329
- $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
330
- var $this = $(this)
331
- if ($this.data('typeahead')) return
332
- $this.typeahead($this.data())
333
- })
334
-
335
- }(window.jQuery);
@@ -1,260 +0,0 @@
1
- String.prototype.rightChars = function(n){
2
- if (n <= 0) {
3
- return "";
4
- }
5
- else if (n > this.length) {
6
- return this;
7
- }
8
- else {
9
- return this.substring(this.length, this.length - n);
10
- }
11
- };
12
-
13
- (function($) {
14
- var
15
- options = {
16
- highlightSpeed : 20,
17
- typeSpeed : 100,
18
- clearDelay : 500,
19
- typeDelay : 200,
20
- clearOnHighlight : true,
21
- typerDataAttr : 'data-typer-targets',
22
- typerInterval : 2000
23
- },
24
- highlight,
25
- clearText,
26
- backspace,
27
- type,
28
- spanWithColor,
29
- clearDelay,
30
- typeDelay,
31
- clearData,
32
- isNumber,
33
- typeWithAttribute,
34
- getHighlightInterval,
35
- getTypeInterval,
36
- typerInterval;
37
-
38
- spanWithColor = function(color, backgroundColor) {
39
- if (color === 'rgba(0, 0, 0, 0)') {
40
- color = 'rgb(255, 255, 255)';
41
- }
42
-
43
- return $('<span></span>')
44
- .css('color', color)
45
- .css('background-color', backgroundColor);
46
- };
47
-
48
- isNumber = function (n) {
49
- return !isNaN(parseFloat(n)) && isFinite(n);
50
- };
51
-
52
- clearData = function ($e) {
53
- $e.removeData([
54
- 'typePosition',
55
- 'highlightPosition',
56
- 'leftStop',
57
- 'rightStop',
58
- 'primaryColor',
59
- 'backgroundColor',
60
- 'text',
61
- 'typing'
62
- ]);
63
- };
64
-
65
- type = function ($e) {
66
- var
67
- // position = $e.data('typePosition'),
68
- text = $e.data('text'),
69
- oldLeft = $e.data('oldLeft'),
70
- oldRight = $e.data('oldRight');
71
-
72
- // if (!isNumber(position)) {
73
- // position = $e.data('leftStop');
74
- // }
75
-
76
- if (!text || text.length === 0) {
77
- clearData($e);
78
- return;
79
- }
80
-
81
-
82
- $e.text(
83
- oldLeft +
84
- text.charAt(0) +
85
- oldRight
86
- ).data({
87
- oldLeft: oldLeft + text.charAt(0),
88
- text: text.substring(1)
89
- });
90
-
91
- // $e.text($e.text() + text.substring(position, position + 1));
92
-
93
- // $e.data('typePosition', position + 1);
94
-
95
- setTimeout(function () {
96
- type($e);
97
- }, getTypeInterval());
98
- };
99
-
100
- clearText = function ($e) {
101
- $e.find('span').remove();
102
-
103
- setTimeout(function () {
104
- type($e);
105
- }, typeDelay());
106
- };
107
-
108
- highlight = function ($e) {
109
- var
110
- position = $e.data('highlightPosition'),
111
- leftText,
112
- highlightedText,
113
- rightText;
114
-
115
- if (!isNumber(position)) {
116
- position = $e.data('rightStop') + 1;
117
- }
118
-
119
- if (position <= $e.data('leftStop')) {
120
- setTimeout(function () {
121
- clearText($e);
122
- }, clearDelay());
123
- return;
124
- }
125
-
126
- leftText = $e.text().substring(0, position - 1);
127
- highlightedText = $e.text().substring(position - 1, $e.data('rightStop') + 1);
128
- rightText = $e.text().substring($e.data('rightStop') + 1);
129
-
130
- $e.html(leftText)
131
- .append(
132
- spanWithColor(
133
- $e.data('backgroundColor'),
134
- $e.data('primaryColor')
135
- )
136
- .append(highlightedText)
137
- )
138
- .append(rightText);
139
-
140
- $e.data('highlightPosition', position - 1);
141
-
142
- setTimeout(function () {
143
- return highlight($e);
144
- }, getHighlightInterval());
145
- };
146
-
147
- typeWithAttribute = function ($e) {
148
- var targets;
149
-
150
- if ($e.data('typing')) {
151
- return;
152
- }
153
-
154
- try {
155
- targets = JSON.parse($e.attr($.typer.options.typerDataAttr)).targets;
156
- } catch (e) {}
157
-
158
- if (typeof targets === "undefined") {
159
- targets = $.map($e.attr($.typer.options.typerDataAttr).split(','), function (e) {
160
- return $.trim(e);
161
- });
162
- }
163
-
164
- $e.typeTo(targets[Math.floor(Math.random()*targets.length)]);
165
- };
166
-
167
- // Expose our options to the world.
168
- $.typer = (function () {
169
- return { options: options };
170
- })();
171
-
172
- $.extend($.typer, {
173
- options: options
174
- });
175
-
176
- //-- Methods to attach to jQuery sets
177
-
178
- $.fn.typer = function() {
179
- var $elements = $(this);
180
-
181
- return $elements.each(function () {
182
- var $e = $(this);
183
-
184
- if (typeof $e.attr($.typer.options.typerDataAttr) === "undefined") {
185
- return;
186
- }
187
-
188
- typeWithAttribute($e);
189
- setInterval(function () {
190
- typeWithAttribute($e);
191
- }, typerInterval());
192
- });
193
- };
194
-
195
- $.fn.typeTo = function (newString) {
196
- var
197
- $e = $(this),
198
- currentText = $e.text(),
199
- i = 0,
200
- j = 0;
201
-
202
- if (currentText === newString) {
203
- console.log("Our strings our equal, nothing to type");
204
- return $e;
205
- }
206
-
207
- if (currentText !== $e.html()) {
208
- console.error("Typer does not work on elements with child elements.");
209
- return $e;
210
- }
211
-
212
- $e.data('typing', true);
213
-
214
- while (currentText.charAt(i) === newString.charAt(i)) {
215
- i++;
216
- }
217
-
218
- while (currentText.rightChars(j) === newString.rightChars(j)) {
219
- j++;
220
- }
221
-
222
- newString = newString.substring(i, newString.length - j + 1);
223
-
224
- $e.data({
225
- oldLeft: currentText.substring(0, i),
226
- oldRight: currentText.rightChars(j - 1),
227
- leftStop: i,
228
- rightStop: currentText.length - j,
229
- primaryColor: $e.css('color'),
230
- backgroundColor: $e.css('background-color'),
231
- text: newString
232
- });
233
-
234
- highlight($e);
235
-
236
- return $e;
237
- };
238
-
239
- //-- Helper methods. These can one day be customized further to include things like ranges of delays.
240
-
241
- getHighlightInterval = function () {
242
- return $.typer.options.highlightSpeed;
243
- };
244
-
245
- getTypeInterval = function () {
246
- return $.typer.options.typeSpeed;
247
- },
248
-
249
- clearDelay = function () {
250
- return $.typer.options.clearDelay;
251
- },
252
-
253
- typeDelay = function () {
254
- return $.typer.options.typeDelay;
255
- };
256
-
257
- typerInterval = function () {
258
- return $.typer.options.typerInterval;
259
- };
260
- })(jQuery);