foundation-rails 5.0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (136) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/app/controllers/foundation/rails/styleguide_controller.rb +10 -0
  8. data/app/views/foundation/rails/styleguide/show.html.erb +134 -0
  9. data/config/routes.rb +3 -0
  10. data/foundation-rails.gemspec +25 -0
  11. data/lib/foundation-rails.rb +1 -0
  12. data/lib/foundation/rails.rb +3 -0
  13. data/lib/foundation/rails/engine.rb +7 -0
  14. data/lib/foundation/rails/generators/install_generator.rb +56 -0
  15. data/lib/foundation/rails/templates/application.html.erb +19 -0
  16. data/lib/foundation/rails/templates/application.html.haml +18 -0
  17. data/lib/foundation/rails/templates/application.html.slim +17 -0
  18. data/lib/foundation/rails/version.rb +5 -0
  19. data/test/dummy/.gitignore +16 -0
  20. data/test/dummy/Gemfile +47 -0
  21. data/test/dummy/README.rdoc +28 -0
  22. data/test/dummy/Rakefile +6 -0
  23. data/test/dummy/app/assets/images/.keep +0 -0
  24. data/test/dummy/app/assets/javascripts/application.js +8 -0
  25. data/test/dummy/app/assets/stylesheets/application.css +4 -0
  26. data/test/dummy/app/assets/stylesheets/foundation_and_overrides.scss +4 -0
  27. data/test/dummy/app/controllers/application_controller.rb +5 -0
  28. data/test/dummy/app/controllers/concerns/.keep +0 -0
  29. data/test/dummy/app/controllers/styleguide_controller.rb +4 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/helpers/styleguide_helper.rb +2 -0
  32. data/test/dummy/app/mailers/.keep +0 -0
  33. data/test/dummy/app/models/.keep +0 -0
  34. data/test/dummy/app/models/concerns/.keep +0 -0
  35. data/test/dummy/app/views/layouts/application.html.erb +19 -0
  36. data/test/dummy/app/views/styleguide/show.html.erb +109 -0
  37. data/test/dummy/bin/bundle +3 -0
  38. data/test/dummy/bin/rails +4 -0
  39. data/test/dummy/bin/rake +4 -0
  40. data/test/dummy/config.ru +4 -0
  41. data/test/dummy/config/application.rb +23 -0
  42. data/test/dummy/config/boot.rb +4 -0
  43. data/test/dummy/config/database.yml +25 -0
  44. data/test/dummy/config/environment.rb +5 -0
  45. data/test/dummy/config/environments/development.rb +29 -0
  46. data/test/dummy/config/environments/production.rb +80 -0
  47. data/test/dummy/config/environments/test.rb +36 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/test/dummy/config/initializers/inflections.rb +16 -0
  51. data/test/dummy/config/initializers/mime_types.rb +5 -0
  52. data/test/dummy/config/initializers/secret_token.rb +12 -0
  53. data/test/dummy/config/initializers/session_store.rb +3 -0
  54. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/test/dummy/config/locales/en.yml +23 -0
  56. data/test/dummy/config/routes.rb +3 -0
  57. data/test/dummy/db/seeds.rb +7 -0
  58. data/test/dummy/lib/assets/.keep +0 -0
  59. data/test/dummy/lib/tasks/.keep +0 -0
  60. data/test/dummy/log/.keep +0 -0
  61. data/test/dummy/public/404.html +58 -0
  62. data/test/dummy/public/422.html +58 -0
  63. data/test/dummy/public/500.html +57 -0
  64. data/test/dummy/public/favicon.ico +0 -0
  65. data/test/dummy/public/robots.txt +5 -0
  66. data/test/dummy/test/controllers/.keep +0 -0
  67. data/test/dummy/test/controllers/styleguide_controller_test.rb +9 -0
  68. data/test/dummy/test/fixtures/.keep +0 -0
  69. data/test/dummy/test/helpers/.keep +0 -0
  70. data/test/dummy/test/helpers/styleguide_helper_test.rb +4 -0
  71. data/test/dummy/test/integration/.keep +0 -0
  72. data/test/dummy/test/mailers/.keep +0 -0
  73. data/test/dummy/test/models/.keep +0 -0
  74. data/test/dummy/test/test_helper.rb +15 -0
  75. data/test/dummy/vendor/assets/javascripts/.keep +0 -0
  76. data/test/dummy/vendor/assets/stylesheets/.keep +0 -0
  77. data/vendor/_settings.scss +992 -0
  78. data/vendor/assets/javascripts/foundation.js +15 -0
  79. data/vendor/assets/javascripts/foundation/foundation.abide.js +201 -0
  80. data/vendor/assets/javascripts/foundation/foundation.accordion.js +41 -0
  81. data/vendor/assets/javascripts/foundation/foundation.alert.js +34 -0
  82. data/vendor/assets/javascripts/foundation/foundation.clearing.js +450 -0
  83. data/vendor/assets/javascripts/foundation/foundation.dropdown.js +184 -0
  84. data/vendor/assets/javascripts/foundation/foundation.interchange.js +304 -0
  85. data/vendor/assets/javascripts/foundation/foundation.joyride.js +839 -0
  86. data/vendor/assets/javascripts/foundation/foundation.js +416 -0
  87. data/vendor/assets/javascripts/foundation/foundation.magellan.js +118 -0
  88. data/vendor/assets/javascripts/foundation/foundation.offcanvas.js +37 -0
  89. data/vendor/assets/javascripts/foundation/foundation.orbit.js +434 -0
  90. data/vendor/assets/javascripts/foundation/foundation.reveal.js +347 -0
  91. data/vendor/assets/javascripts/foundation/foundation.tab.js +37 -0
  92. data/vendor/assets/javascripts/foundation/foundation.tooltip.js +202 -0
  93. data/vendor/assets/javascripts/foundation/foundation.topbar.js +380 -0
  94. data/vendor/assets/javascripts/vendor/modernizr.js +4 -0
  95. data/vendor/assets/stylesheets/foundation.scss +38 -0
  96. data/vendor/assets/stylesheets/foundation/_functions.scss +75 -0
  97. data/vendor/assets/stylesheets/foundation/_settings.scss +992 -0
  98. data/vendor/assets/stylesheets/foundation/components/_accordion.scss +49 -0
  99. data/vendor/assets/stylesheets/foundation/components/_alert-boxes.scss +113 -0
  100. data/vendor/assets/stylesheets/foundation/components/_block-grid.scss +83 -0
  101. data/vendor/assets/stylesheets/foundation/components/_breadcrumbs.scss +123 -0
  102. data/vendor/assets/stylesheets/foundation/components/_button-groups.scss +97 -0
  103. data/vendor/assets/stylesheets/foundation/components/_buttons.scss +234 -0
  104. data/vendor/assets/stylesheets/foundation/components/_clearing.scss +233 -0
  105. data/vendor/assets/stylesheets/foundation/components/_dropdown-buttons.scss +125 -0
  106. data/vendor/assets/stylesheets/foundation/components/_dropdown.scss +159 -0
  107. data/vendor/assets/stylesheets/foundation/components/_flex-video.scss +47 -0
  108. data/vendor/assets/stylesheets/foundation/components/_forms.scss +472 -0
  109. data/vendor/assets/stylesheets/foundation/components/_functions.scss +70 -0
  110. data/vendor/assets/stylesheets/foundation/components/_global.scss +387 -0
  111. data/vendor/assets/stylesheets/foundation/components/_grid.scss +234 -0
  112. data/vendor/assets/stylesheets/foundation/components/_inline-lists.scss +52 -0
  113. data/vendor/assets/stylesheets/foundation/components/_joyride.scss +220 -0
  114. data/vendor/assets/stylesheets/foundation/components/_keystrokes.scss +57 -0
  115. data/vendor/assets/stylesheets/foundation/components/_labels.scss +100 -0
  116. data/vendor/assets/stylesheets/foundation/components/_magellan.scss +30 -0
  117. data/vendor/assets/stylesheets/foundation/components/_offcanvas.scss +360 -0
  118. data/vendor/assets/stylesheets/foundation/components/_orbit.scss +353 -0
  119. data/vendor/assets/stylesheets/foundation/components/_pagination.scss +145 -0
  120. data/vendor/assets/stylesheets/foundation/components/_panels.scss +87 -0
  121. data/vendor/assets/stylesheets/foundation/components/_pricing-tables.scss +146 -0
  122. data/vendor/assets/stylesheets/foundation/components/_progress-bars.scss +75 -0
  123. data/vendor/assets/stylesheets/foundation/components/_reveal.scss +165 -0
  124. data/vendor/assets/stylesheets/foundation/components/_side-nav.scss +83 -0
  125. data/vendor/assets/stylesheets/foundation/components/_split-buttons.scss +187 -0
  126. data/vendor/assets/stylesheets/foundation/components/_sub-nav.scss +118 -0
  127. data/vendor/assets/stylesheets/foundation/components/_switch.scss +314 -0
  128. data/vendor/assets/stylesheets/foundation/components/_tables.scss +93 -0
  129. data/vendor/assets/stylesheets/foundation/components/_tabs.scss +95 -0
  130. data/vendor/assets/stylesheets/foundation/components/_thumbs.scss +71 -0
  131. data/vendor/assets/stylesheets/foundation/components/_tooltips.scss +121 -0
  132. data/vendor/assets/stylesheets/foundation/components/_top-bar.scss +590 -0
  133. data/vendor/assets/stylesheets/foundation/components/_type.scss +447 -0
  134. data/vendor/assets/stylesheets/foundation/components/_visibility.scss +661 -0
  135. data/vendor/assets/stylesheets/normalize.scss +410 -0
  136. metadata +292 -0
@@ -0,0 +1,839 @@
1
+ ;(function ($, window, document, undefined) {
2
+ 'use strict';
3
+
4
+ var Modernizr = Modernizr || false;
5
+
6
+ Foundation.libs.joyride = {
7
+ name : 'joyride',
8
+
9
+ version : '5.0.0',
10
+
11
+ defaults : {
12
+ expose : false, // turn on or off the expose feature
13
+ modal : true, // Whether to cover page with modal during the tour
14
+ tip_location : 'bottom', // 'top' or 'bottom' in relation to parent
15
+ nub_position : 'auto', // override on a per tooltip bases
16
+ scroll_speed : 1500, // Page scrolling speed in milliseconds, 0 = no scroll animation
17
+ scroll_animation : 'linear', // supports 'swing' and 'linear', extend with jQuery UI.
18
+ timer : 0, // 0 = no timer , all other numbers = timer in milliseconds
19
+ start_timer_on_click : true, // true or false - true requires clicking the first button start the timer
20
+ start_offset : 0, // the index of the tooltip you want to start on (index of the li)
21
+ next_button : true, // true or false to control whether a next button is used
22
+ tip_animation : 'fade', // 'pop' or 'fade' in each tip
23
+ pause_after : [], // array of indexes where to pause the tour after
24
+ exposed : [], // array of expose elements
25
+ tip_animation_fade_speed: 300, // when tipAnimation = 'fade' this is speed in milliseconds for the transition
26
+ cookie_monster : false, // true or false to control whether cookies are used
27
+ cookie_name : 'joyride', // Name the cookie you'll use
28
+ cookie_domain : false, // Will this cookie be attached to a domain, ie. '.notableapp.com'
29
+ cookie_expires : 365, // set when you would like the cookie to expire.
30
+ tip_container : 'body', // Where will the tip be attached
31
+ tip_location_patterns : {
32
+ top: ['bottom'],
33
+ bottom: [], // bottom should not need to be repositioned
34
+ left: ['right', 'top', 'bottom'],
35
+ right: ['left', 'top', 'bottom']
36
+ },
37
+ post_ride_callback : function (){}, // A method to call once the tour closes (canceled or complete)
38
+ post_step_callback : function (){}, // A method to call after each step
39
+ pre_step_callback : function (){}, // A method to call before each step
40
+ pre_ride_callback : function (){}, // A method to call before the tour starts (passed index, tip, and cloned exposed element)
41
+ post_expose_callback : function (){}, // A method to call after an element has been exposed
42
+ template : { // HTML segments for tip layout
43
+ link : '<a href="#close" class="joyride-close-tip">&times;</a>',
44
+ timer : '<div class="joyride-timer-indicator-wrap"><span class="joyride-timer-indicator"></span></div>',
45
+ tip : '<div class="joyride-tip-guide"><span class="joyride-nub"></span></div>',
46
+ wrapper : '<div class="joyride-content-wrapper"></div>',
47
+ button : '<a href="#" class="small button joyride-next-tip"></a>',
48
+ modal : '<div class="joyride-modal-bg"></div>',
49
+ expose : '<div class="joyride-expose-wrapper"></div>',
50
+ expose_cover: '<div class="joyride-expose-cover"></div>'
51
+ },
52
+ expose_add_class : '' // One or more space-separated class names to be added to exposed element
53
+ },
54
+
55
+ init : function (scope, method, options) {
56
+ Foundation.inherit(this, 'throttle delay');
57
+
58
+ this.settings = this.defaults;
59
+
60
+ this.bindings(method, options)
61
+ },
62
+
63
+ events : function () {
64
+ var self = this;
65
+
66
+ $(this.scope)
67
+ .off('.joyride')
68
+ .on('click.fndtn.joyride', '.joyride-next-tip, .joyride-modal-bg', function (e) {
69
+ e.preventDefault();
70
+
71
+ if (this.settings.$li.next().length < 1) {
72
+ this.end();
73
+ } else if (this.settings.timer > 0) {
74
+ clearTimeout(this.settings.automate);
75
+ this.hide();
76
+ this.show();
77
+ this.startTimer();
78
+ } else {
79
+ this.hide();
80
+ this.show();
81
+ }
82
+
83
+ }.bind(this))
84
+
85
+ .on('click.fndtn.joyride', '.joyride-close-tip', function (e) {
86
+ e.preventDefault();
87
+ this.end();
88
+ }.bind(this));
89
+
90
+ $(window)
91
+ .off('.joyride')
92
+ .on('resize.fndtn.joyride', self.throttle(function () {
93
+ if ($('[data-joyride]').length > 0 && self.settings.$next_tip) {
94
+ if (self.settings.exposed.length > 0) {
95
+ var $els = $(self.settings.exposed);
96
+
97
+ $els.each(function () {
98
+ var $this = $(this);
99
+ self.un_expose($this);
100
+ self.expose($this);
101
+ });
102
+ }
103
+
104
+ if (self.is_phone()) {
105
+ self.pos_phone();
106
+ } else {
107
+ self.pos_default(false, true);
108
+ }
109
+ }
110
+ }, 100));
111
+ },
112
+
113
+ start : function () {
114
+ var self = this,
115
+ $this = $('[data-joyride]', this.scope),
116
+ integer_settings = ['timer', 'scrollSpeed', 'startOffset', 'tipAnimationFadeSpeed', 'cookieExpires'],
117
+ int_settings_count = integer_settings.length;
118
+
119
+ if (!$this.length > 0) return;
120
+
121
+ if (!this.settings.init) this.events();
122
+
123
+ this.settings = $this.data('joyride-init');
124
+
125
+ // non configureable settings
126
+ this.settings.$content_el = $this;
127
+ this.settings.$body = $(this.settings.tip_container);
128
+ this.settings.body_offset = $(this.settings.tip_container).position();
129
+ this.settings.$tip_content = this.settings.$content_el.find('> li');
130
+ this.settings.paused = false;
131
+ this.settings.attempts = 0;
132
+
133
+ // can we create cookies?
134
+ if (typeof $.cookie !== 'function') {
135
+ this.settings.cookie_monster = false;
136
+ }
137
+
138
+ // generate the tips and insert into dom.
139
+ if (!this.settings.cookie_monster || this.settings.cookie_monster && $.cookie(this.settings.cookie_name) === null) {
140
+ this.settings.$tip_content.each(function (index) {
141
+ var $this = $(this);
142
+ this.settings = $.extend({}, self.defaults, self.data_options($this))
143
+
144
+ // Make sure that settings parsed from data_options are integers where necessary
145
+ for (var i = int_settings_count - 1; i >= 0; i--) {
146
+ self.settings[integer_settings[i]] = parseInt(self.settings[integer_settings[i]], 10);
147
+ }
148
+ self.create({$li : $this, index : index});
149
+ });
150
+
151
+ // show first tip
152
+ if (!this.settings.start_timer_on_click && this.settings.timer > 0) {
153
+ this.show('init');
154
+ this.startTimer();
155
+ } else {
156
+ this.show('init');
157
+ }
158
+
159
+ }
160
+ },
161
+
162
+ resume : function () {
163
+ this.set_li();
164
+ this.show();
165
+ },
166
+
167
+ tip_template : function (opts) {
168
+ var $blank, content;
169
+
170
+ opts.tip_class = opts.tip_class || '';
171
+
172
+ $blank = $(this.settings.template.tip).addClass(opts.tip_class);
173
+ content = $.trim($(opts.li).html()) +
174
+ this.button_text(opts.button_text) +
175
+ this.settings.template.link +
176
+ this.timer_instance(opts.index);
177
+
178
+ $blank.append($(this.settings.template.wrapper));
179
+ $blank.first().attr('data-index', opts.index);
180
+ $('.joyride-content-wrapper', $blank).append(content);
181
+
182
+ return $blank[0];
183
+ },
184
+
185
+ timer_instance : function (index) {
186
+ var txt;
187
+
188
+ if ((index === 0 && this.settings.start_timer_on_click && this.settings.timer > 0) || this.settings.timer === 0) {
189
+ txt = '';
190
+ } else {
191
+ txt = $(this.settings.template.timer)[0].outerHTML;
192
+ }
193
+ return txt;
194
+ },
195
+
196
+ button_text : function (txt) {
197
+ if (this.settings.next_button) {
198
+ txt = $.trim(txt) || 'Next';
199
+ txt = $(this.settings.template.button).append(txt)[0].outerHTML;
200
+ } else {
201
+ txt = '';
202
+ }
203
+ return txt;
204
+ },
205
+
206
+ create : function (opts) {
207
+ var buttonText = opts.$li.attr('data-button') || opts.$li.attr('data-text'),
208
+ tipClass = opts.$li.attr('class'),
209
+ $tip_content = $(this.tip_template({
210
+ tip_class : tipClass,
211
+ index : opts.index,
212
+ button_text : buttonText,
213
+ li : opts.$li
214
+ }));
215
+
216
+ $(this.settings.tip_container).append($tip_content);
217
+ },
218
+
219
+ show : function (init) {
220
+ var $timer = null;
221
+
222
+ // are we paused?
223
+ if (this.settings.$li === undefined
224
+ || ($.inArray(this.settings.$li.index(), this.settings.pause_after) === -1)) {
225
+
226
+ // don't go to the next li if the tour was paused
227
+ if (this.settings.paused) {
228
+ this.settings.paused = false;
229
+ } else {
230
+ this.set_li(init);
231
+ }
232
+
233
+ this.settings.attempts = 0;
234
+
235
+ if (this.settings.$li.length && this.settings.$target.length > 0) {
236
+ if (init) { //run when we first start
237
+ this.settings.pre_ride_callback(this.settings.$li.index(), this.settings.$next_tip);
238
+ if (this.settings.modal) {
239
+ this.show_modal();
240
+ }
241
+ }
242
+
243
+ this.settings.pre_step_callback(this.settings.$li.index(), this.settings.$next_tip);
244
+
245
+ if (this.settings.modal && this.settings.expose) {
246
+ this.expose();
247
+ }
248
+
249
+ this.settings.tip_settings = $.extend({}, this.settings, this.data_options(this.settings.$li));
250
+
251
+ this.settings.timer = parseInt(this.settings.timer, 10);
252
+
253
+ this.settings.tip_settings.tip_location_pattern = this.settings.tip_location_patterns[this.settings.tip_settings.tip_location];
254
+
255
+ // scroll if not modal
256
+ if (!/body/i.test(this.settings.$target.selector)) {
257
+ this.scroll_to();
258
+ }
259
+
260
+ if (this.is_phone()) {
261
+ this.pos_phone(true);
262
+ } else {
263
+ this.pos_default(true);
264
+ }
265
+
266
+ $timer = this.settings.$next_tip.find('.joyride-timer-indicator');
267
+
268
+ if (/pop/i.test(this.settings.tip_animation)) {
269
+
270
+ $timer.width(0);
271
+
272
+ if (this.settings.timer > 0) {
273
+
274
+ this.settings.$next_tip.show();
275
+
276
+ this.delay(function () {
277
+ $timer.animate({
278
+ width: $timer.parent().width()
279
+ }, this.settings.timer, 'linear');
280
+ }.bind(this), this.settings.tip_animation_fade_speed);
281
+
282
+ } else {
283
+ this.settings.$next_tip.show();
284
+
285
+ }
286
+
287
+
288
+ } else if (/fade/i.test(this.settings.tip_animation)) {
289
+
290
+ $timer.width(0);
291
+
292
+ if (this.settings.timer > 0) {
293
+
294
+ this.settings.$next_tip
295
+ .fadeIn(this.settings.tip_animation_fade_speed)
296
+ .show();
297
+
298
+ this.delay(function () {
299
+ $timer.animate({
300
+ width: $timer.parent().width()
301
+ }, this.settings.timer, 'linear');
302
+ }.bind(this), this.settings.tip_animation_fadeSpeed);
303
+
304
+ } else {
305
+ this.settings.$next_tip.fadeIn(this.settings.tip_animation_fade_speed);
306
+ }
307
+ }
308
+
309
+ this.settings.$current_tip = this.settings.$next_tip;
310
+
311
+ // skip non-existant targets
312
+ } else if (this.settings.$li && this.settings.$target.length < 1) {
313
+
314
+ this.show();
315
+
316
+ } else {
317
+
318
+ this.end();
319
+
320
+ }
321
+ } else {
322
+
323
+ this.settings.paused = true;
324
+
325
+ }
326
+
327
+ },
328
+
329
+ is_phone : function () {
330
+ return matchMedia(Foundation.media_queries.small).matches &&
331
+ !matchMedia(Foundation.media_queries.medium).matches;
332
+ },
333
+
334
+ hide : function () {
335
+ if (this.settings.modal && this.settings.expose) {
336
+ this.un_expose();
337
+ }
338
+
339
+ if (!this.settings.modal) {
340
+ $('.joyride-modal-bg').hide();
341
+ }
342
+
343
+ // Prevent scroll bouncing...wait to remove from layout
344
+ this.settings.$current_tip.css('visibility', 'hidden');
345
+ setTimeout($.proxy(function() {
346
+ this.hide();
347
+ this.css('visibility', 'visible');
348
+ }, this.settings.$current_tip), 0);
349
+ this.settings.post_step_callback(this.settings.$li.index(),
350
+ this.settings.$current_tip);
351
+ },
352
+
353
+ set_li : function (init) {
354
+ if (init) {
355
+ this.settings.$li = this.settings.$tip_content.eq(this.settings.start_offset);
356
+ this.set_next_tip();
357
+ this.settings.$current_tip = this.settings.$next_tip;
358
+ } else {
359
+ this.settings.$li = this.settings.$li.next();
360
+ this.set_next_tip();
361
+ }
362
+
363
+ this.set_target();
364
+ },
365
+
366
+ set_next_tip : function () {
367
+ this.settings.$next_tip = $(".joyride-tip-guide").eq(this.settings.$li.index());
368
+ this.settings.$next_tip.data('closed', '');
369
+ },
370
+
371
+ set_target : function () {
372
+ var cl = this.settings.$li.attr('data-class'),
373
+ id = this.settings.$li.attr('data-id'),
374
+ $sel = function () {
375
+ if (id) {
376
+ return $(document.getElementById(id));
377
+ } else if (cl) {
378
+ return $('.' + cl).first();
379
+ } else {
380
+ return $('body');
381
+ }
382
+ };
383
+
384
+ this.settings.$target = $sel();
385
+ },
386
+
387
+ scroll_to : function () {
388
+ var window_half, tipOffset;
389
+
390
+ window_half = $(window).height() / 2;
391
+ tipOffset = Math.ceil(this.settings.$target.offset().top - window_half + this.settings.$next_tip.outerHeight());
392
+
393
+ if (tipOffset > 0) {
394
+ $('html, body').animate({
395
+ scrollTop: tipOffset
396
+ }, this.settings.scroll_speed, 'swing');
397
+ }
398
+ },
399
+
400
+ paused : function () {
401
+ return ($.inArray((this.settings.$li.index() + 1), this.settings.pause_after) === -1);
402
+ },
403
+
404
+ restart : function () {
405
+ this.hide();
406
+ this.settings.$li = undefined;
407
+ this.show('init');
408
+ },
409
+
410
+ pos_default : function (init, resizing) {
411
+ var half_fold = Math.ceil($(window).height() / 2),
412
+ tip_position = this.settings.$next_tip.offset(),
413
+ $nub = this.settings.$next_tip.find('.joyride-nub'),
414
+ nub_width = Math.ceil($nub.outerWidth() / 2),
415
+ nub_height = Math.ceil($nub.outerHeight() / 2),
416
+ toggle = init || false;
417
+
418
+ // tip must not be "display: none" to calculate position
419
+ if (toggle) {
420
+ this.settings.$next_tip.css('visibility', 'hidden');
421
+ this.settings.$next_tip.show();
422
+ }
423
+
424
+ if (typeof resizing === 'undefined') {
425
+ resizing = false;
426
+ }
427
+
428
+ if (!/body/i.test(this.settings.$target.selector)) {
429
+
430
+ if (this.bottom()) {
431
+ var leftOffset = this.settings.$target.offset().left;
432
+ if (Foundation.rtl) {
433
+ leftOffset = this.settings.$target.offset().width - this.settings.$next_tip.width() + leftOffset;
434
+ }
435
+ this.settings.$next_tip.css({
436
+ top: (this.settings.$target.offset().top + nub_height + this.settings.$target.outerHeight()),
437
+ left: leftOffset});
438
+
439
+ this.nub_position($nub, this.settings.tip_settings.nub_position, 'top');
440
+
441
+ } else if (this.top()) {
442
+ var leftOffset = this.settings.$target.offset().left;
443
+ if (Foundation.rtl) {
444
+ leftOffset = this.settings.$target.offset().width - this.settings.$next_tip.width() + leftOffset;
445
+ }
446
+ this.settings.$next_tip.css({
447
+ top: (this.settings.$target.offset().top - this.settings.$next_tip.outerHeight() - nub_height),
448
+ left: leftOffset});
449
+
450
+ this.nub_position($nub, this.settings.tip_settings.nub_position, 'bottom');
451
+
452
+ } else if (this.right()) {
453
+
454
+ this.settings.$next_tip.css({
455
+ top: this.settings.$target.offset().top,
456
+ left: (this.outerWidth(this.settings.$target) + this.settings.$target.offset().left + nub_width)});
457
+
458
+ this.nub_position($nub, this.settings.tip_settings.nub_position, 'left');
459
+
460
+ } else if (this.left()) {
461
+
462
+ this.settings.$next_tip.css({
463
+ top: this.settings.$target.offset().top,
464
+ left: (this.settings.$target.offset().left - this.outerWidth(this.settings.$next_tip) - nub_width)});
465
+
466
+ this.nub_position($nub, this.settings.tip_settings.nub_position, 'right');
467
+
468
+ }
469
+
470
+ if (!this.visible(this.corners(this.settings.$next_tip)) && this.settings.attempts < this.settings.tip_settings.tip_location_pattern.length) {
471
+
472
+ $nub.removeClass('bottom')
473
+ .removeClass('top')
474
+ .removeClass('right')
475
+ .removeClass('left');
476
+
477
+ this.settings.tip_settings.tip_location = this.settings.tip_settings.tip_location_pattern[this.settings.attempts];
478
+
479
+ this.settings.attempts++;
480
+
481
+ this.pos_default();
482
+
483
+ }
484
+
485
+ } else if (this.settings.$li.length) {
486
+
487
+ this.pos_modal($nub);
488
+
489
+ }
490
+
491
+ if (toggle) {
492
+ this.settings.$next_tip.hide();
493
+ this.settings.$next_tip.css('visibility', 'visible');
494
+ }
495
+
496
+ },
497
+
498
+ pos_phone : function (init) {
499
+ var tip_height = this.settings.$next_tip.outerHeight(),
500
+ tip_offset = this.settings.$next_tip.offset(),
501
+ target_height = this.settings.$target.outerHeight(),
502
+ $nub = $('.joyride-nub', this.settings.$next_tip),
503
+ nub_height = Math.ceil($nub.outerHeight() / 2),
504
+ toggle = init || false;
505
+
506
+ $nub.removeClass('bottom')
507
+ .removeClass('top')
508
+ .removeClass('right')
509
+ .removeClass('left');
510
+
511
+ if (toggle) {
512
+ this.settings.$next_tip.css('visibility', 'hidden');
513
+ this.settings.$next_tip.show();
514
+ }
515
+
516
+ if (!/body/i.test(this.settings.$target.selector)) {
517
+
518
+ if (this.top()) {
519
+
520
+ this.settings.$next_tip.offset({top: this.settings.$target.offset().top - tip_height - nub_height});
521
+ $nub.addClass('bottom');
522
+
523
+ } else {
524
+
525
+ this.settings.$next_tip.offset({top: this.settings.$target.offset().top + target_height + nub_height});
526
+ $nub.addClass('top');
527
+
528
+ }
529
+
530
+ } else if (this.settings.$li.length) {
531
+ this.pos_modal($nub);
532
+ }
533
+
534
+ if (toggle) {
535
+ this.settings.$next_tip.hide();
536
+ this.settings.$next_tip.css('visibility', 'visible');
537
+ }
538
+ },
539
+
540
+ pos_modal : function ($nub) {
541
+ this.center();
542
+ $nub.hide();
543
+
544
+ this.show_modal();
545
+ },
546
+
547
+ show_modal : function () {
548
+ if (!this.settings.$next_tip.data('closed')) {
549
+ var joyridemodalbg = $('.joyride-modal-bg');
550
+ if (joyridemodalbg.length < 1) {
551
+ $('body').append(this.settings.template.modal).show();
552
+ }
553
+
554
+ if (/pop/i.test(this.settings.tip_animation)) {
555
+ joyridemodalbg.show();
556
+ } else {
557
+ joyridemodalbg.fadeIn(this.settings.tip_animation_fade_speed);
558
+ }
559
+ }
560
+ },
561
+
562
+ expose : function () {
563
+ var expose,
564
+ exposeCover,
565
+ el,
566
+ origCSS,
567
+ origClasses,
568
+ randId = 'expose-'+Math.floor(Math.random()*10000);
569
+
570
+ if (arguments.length > 0 && arguments[0] instanceof $) {
571
+ el = arguments[0];
572
+ } else if(this.settings.$target && !/body/i.test(this.settings.$target.selector)){
573
+ el = this.settings.$target;
574
+ } else {
575
+ return false;
576
+ }
577
+
578
+ if(el.length < 1){
579
+ if(window.console){
580
+ console.error('element not valid', el);
581
+ }
582
+ return false;
583
+ }
584
+
585
+ expose = $(this.settings.template.expose);
586
+ this.settings.$body.append(expose);
587
+ expose.css({
588
+ top: el.offset().top,
589
+ left: el.offset().left,
590
+ width: el.outerWidth(true),
591
+ height: el.outerHeight(true)
592
+ });
593
+
594
+ exposeCover = $(this.settings.template.expose_cover);
595
+
596
+ origCSS = {
597
+ zIndex: el.css('z-index'),
598
+ position: el.css('position')
599
+ };
600
+
601
+ origClasses = el.attr('class') == null ? '' : el.attr('class');
602
+
603
+ el.css('z-index',parseInt(expose.css('z-index'))+1);
604
+
605
+ if (origCSS.position == 'static') {
606
+ el.css('position','relative');
607
+ }
608
+
609
+ el.data('expose-css',origCSS);
610
+ el.data('orig-class', origClasses);
611
+ el.attr('class', origClasses + ' ' + this.settings.expose_add_class);
612
+
613
+ exposeCover.css({
614
+ top: el.offset().top,
615
+ left: el.offset().left,
616
+ width: el.outerWidth(true),
617
+ height: el.outerHeight(true)
618
+ });
619
+
620
+ if (this.settings.modal) this.show_modal();
621
+
622
+ this.settings.$body.append(exposeCover);
623
+ expose.addClass(randId);
624
+ exposeCover.addClass(randId);
625
+ el.data('expose', randId);
626
+ this.settings.post_expose_callback(this.settings.$li.index(), this.settings.$next_tip, el);
627
+ this.add_exposed(el);
628
+ },
629
+
630
+ un_expose : function () {
631
+ var exposeId,
632
+ el,
633
+ expose ,
634
+ origCSS,
635
+ origClasses,
636
+ clearAll = false;
637
+
638
+ if (arguments.length > 0 && arguments[0] instanceof $) {
639
+ el = arguments[0];
640
+ } else if(this.settings.$target && !/body/i.test(this.settings.$target.selector)){
641
+ el = this.settings.$target;
642
+ } else {
643
+ return false;
644
+ }
645
+
646
+ if(el.length < 1){
647
+ if (window.console) {
648
+ console.error('element not valid', el);
649
+ }
650
+ return false;
651
+ }
652
+
653
+ exposeId = el.data('expose');
654
+ expose = $('.' + exposeId);
655
+
656
+ if (arguments.length > 1) {
657
+ clearAll = arguments[1];
658
+ }
659
+
660
+ if (clearAll === true) {
661
+ $('.joyride-expose-wrapper,.joyride-expose-cover').remove();
662
+ } else {
663
+ expose.remove();
664
+ }
665
+
666
+ origCSS = el.data('expose-css');
667
+
668
+ if (origCSS.zIndex == 'auto') {
669
+ el.css('z-index', '');
670
+ } else {
671
+ el.css('z-index', origCSS.zIndex);
672
+ }
673
+
674
+ if (origCSS.position != el.css('position')) {
675
+ if(origCSS.position == 'static') {// this is default, no need to set it.
676
+ el.css('position', '');
677
+ } else {
678
+ el.css('position', origCSS.position);
679
+ }
680
+ }
681
+
682
+ origClasses = el.data('orig-class');
683
+ el.attr('class', origClasses);
684
+ el.removeData('orig-classes');
685
+
686
+ el.removeData('expose');
687
+ el.removeData('expose-z-index');
688
+ this.remove_exposed(el);
689
+ },
690
+
691
+ add_exposed: function(el){
692
+ this.settings.exposed = this.settings.exposed || [];
693
+ if (el instanceof $ || typeof el === 'object') {
694
+ this.settings.exposed.push(el[0]);
695
+ } else if (typeof el == 'string') {
696
+ this.settings.exposed.push(el);
697
+ }
698
+ },
699
+
700
+ remove_exposed: function(el){
701
+ var search, count;
702
+ if (el instanceof $) {
703
+ search = el[0]
704
+ } else if (typeof el == 'string'){
705
+ search = el;
706
+ }
707
+
708
+ this.settings.exposed = this.settings.exposed || [];
709
+ count = this.settings.exposed.length;
710
+
711
+ for (var i=0; i < count; i++) {
712
+ if (this.settings.exposed[i] == search) {
713
+ this.settings.exposed.splice(i, 1);
714
+ return;
715
+ }
716
+ }
717
+ },
718
+
719
+ center : function () {
720
+ var $w = $(window);
721
+
722
+ this.settings.$next_tip.css({
723
+ top : ((($w.height() - this.settings.$next_tip.outerHeight()) / 2) + $w.scrollTop()),
724
+ left : ((($w.width() - this.settings.$next_tip.outerWidth()) / 2) + $w.scrollLeft())
725
+ });
726
+
727
+ return true;
728
+ },
729
+
730
+ bottom : function () {
731
+ return /bottom/i.test(this.settings.tip_settings.tip_location);
732
+ },
733
+
734
+ top : function () {
735
+ return /top/i.test(this.settings.tip_settings.tip_location);
736
+ },
737
+
738
+ right : function () {
739
+ return /right/i.test(this.settings.tip_settings.tip_location);
740
+ },
741
+
742
+ left : function () {
743
+ return /left/i.test(this.settings.tip_settings.tip_location);
744
+ },
745
+
746
+ corners : function (el) {
747
+ var w = $(window),
748
+ window_half = w.height() / 2,
749
+ //using this to calculate since scroll may not have finished yet.
750
+ tipOffset = Math.ceil(this.settings.$target.offset().top - window_half + this.settings.$next_tip.outerHeight()),
751
+ right = w.width() + w.scrollLeft(),
752
+ offsetBottom = w.height() + tipOffset,
753
+ bottom = w.height() + w.scrollTop(),
754
+ top = w.scrollTop();
755
+
756
+ if (tipOffset < top) {
757
+ if (tipOffset < 0) {
758
+ top = 0;
759
+ } else {
760
+ top = tipOffset;
761
+ }
762
+ }
763
+
764
+ if (offsetBottom > bottom) {
765
+ bottom = offsetBottom;
766
+ }
767
+
768
+ return [
769
+ el.offset().top < top,
770
+ right < el.offset().left + el.outerWidth(),
771
+ bottom < el.offset().top + el.outerHeight(),
772
+ w.scrollLeft() > el.offset().left
773
+ ];
774
+ },
775
+
776
+ visible : function (hidden_corners) {
777
+ var i = hidden_corners.length;
778
+
779
+ while (i--) {
780
+ if (hidden_corners[i]) return false;
781
+ }
782
+
783
+ return true;
784
+ },
785
+
786
+ nub_position : function (nub, pos, def) {
787
+ if (pos === 'auto') {
788
+ nub.addClass(def);
789
+ } else {
790
+ nub.addClass(pos);
791
+ }
792
+ },
793
+
794
+ startTimer : function () {
795
+ if (this.settings.$li.length) {
796
+ this.settings.automate = setTimeout(function () {
797
+ this.hide();
798
+ this.show();
799
+ this.startTimer();
800
+ }.bind(this), this.settings.timer);
801
+ } else {
802
+ clearTimeout(this.settings.automate);
803
+ }
804
+ },
805
+
806
+ end : function () {
807
+ if (this.settings.cookie_monster) {
808
+ $.cookie(this.settings.cookie_name, 'ridden', { expires: this.settings.cookie_expires, domain: this.settings.cookie_domain });
809
+ }
810
+
811
+ if (this.settings.timer > 0) {
812
+ clearTimeout(this.settings.automate);
813
+ }
814
+
815
+ if (this.settings.modal && this.settings.expose) {
816
+ this.un_expose();
817
+ }
818
+
819
+ this.settings.$next_tip.data('closed', true);
820
+
821
+ $('.joyride-modal-bg').hide();
822
+ this.settings.$current_tip.hide();
823
+ this.settings.post_step_callback(this.settings.$li.index(), this.settings.$current_tip);
824
+ this.settings.post_ride_callback(this.settings.$li.index(), this.settings.$current_tip);
825
+ $('.joyride-tip-guide').remove();
826
+ },
827
+
828
+ off : function () {
829
+ $(this.scope).off('.joyride');
830
+ $(window).off('.joyride');
831
+ $('.joyride-close-tip, .joyride-next-tip, .joyride-modal-bg').off('.joyride');
832
+ $('.joyride-tip-guide, .joyride-modal-bg').remove();
833
+ clearTimeout(this.settings.automate);
834
+ this.settings = {};
835
+ },
836
+
837
+ reflow : function () {}
838
+ };
839
+ }(jQuery, this, this.document));