zurb-foundation-5 5.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.bowerrc +3 -0
- data/.editorconfig +9 -0
- data/.gitignore +46 -0
- data/.travis.yml +34 -0
- data/CONTRIBUTING.md +55 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +16 -0
- data/Gruntfile.js +222 -0
- data/LICENSE +22 -0
- data/README.md +44 -0
- data/bower.json +20 -0
- data/composer.json +9 -0
- data/foundation.gemspec +21 -0
- data/humans.txt +8 -0
- data/js/foundation/foundation.abide.js +299 -0
- data/js/foundation/foundation.accordion.js +54 -0
- data/js/foundation/foundation.alert.js +43 -0
- data/js/foundation/foundation.clearing.js +531 -0
- data/js/foundation/foundation.dropdown.js +306 -0
- data/js/foundation/foundation.equalizer.js +68 -0
- data/js/foundation/foundation.interchange.js +331 -0
- data/js/foundation/foundation.joyride.js +849 -0
- data/js/foundation/foundation.js +609 -0
- data/js/foundation/foundation.magellan.js +173 -0
- data/js/foundation/foundation.offcanvas.js +50 -0
- data/js/foundation/foundation.orbit.js +606 -0
- data/js/foundation/foundation.reveal.js +427 -0
- data/js/foundation/foundation.slider.js +200 -0
- data/js/foundation/foundation.tab.js +168 -0
- data/js/foundation/foundation.tooltip.js +272 -0
- data/js/foundation/foundation.topbar.js +422 -0
- data/karma.conf.js +114 -0
- data/lib/foundation/engine.rb +20 -0
- data/lib/foundation/generators/USAGE +15 -0
- data/lib/foundation/generators/install_generator.rb +54 -0
- data/lib/foundation/generators/templates/application.html.erb +47 -0
- data/lib/foundation/generators/templates/application.html.haml +31 -0
- data/lib/foundation/generators/templates/application.html.slim +35 -0
- data/lib/foundation/sprockets.rb +4 -0
- data/lib/foundation/version.rb +3 -0
- data/lib/scss.js +114 -0
- data/lib/zurb-foundation.rb +33 -0
- data/package.json +48 -0
- data/robots.txt +4 -0
- data/run-tests.sh +83 -0
- data/sache.json +5 -0
- data/scss/foundation.scss +45 -0
- data/scss/foundation/_functions.scss +101 -0
- data/scss/foundation/_settings.scss +1279 -0
- data/scss/foundation/components/_accordion.scss +52 -0
- data/scss/foundation/components/_alert-boxes.scss +126 -0
- data/scss/foundation/components/_block-grid.scss +132 -0
- data/scss/foundation/components/_breadcrumbs.scss +127 -0
- data/scss/foundation/components/_button-groups.scss +108 -0
- data/scss/foundation/components/_buttons.scss +222 -0
- data/scss/foundation/components/_clearing.scss +247 -0
- data/scss/foundation/components/_dropdown-buttons.scss +129 -0
- data/scss/foundation/components/_dropdown.scss +248 -0
- data/scss/foundation/components/_flex-video.scss +51 -0
- data/scss/foundation/components/_forms.scss +496 -0
- data/scss/foundation/components/_global.scss +365 -0
- data/scss/foundation/components/_grid.scss +261 -0
- data/scss/foundation/components/_inline-lists.scss +56 -0
- data/scss/foundation/components/_joyride.scss +220 -0
- data/scss/foundation/components/_keystrokes.scss +61 -0
- data/scss/foundation/components/_labels.scss +104 -0
- data/scss/foundation/components/_magellan.scss +34 -0
- data/scss/foundation/components/_offcanvas.scss +381 -0
- data/scss/foundation/components/_orbit.scss +415 -0
- data/scss/foundation/components/_pagination.scss +150 -0
- data/scss/foundation/components/_panels.scss +91 -0
- data/scss/foundation/components/_pricing-tables.scss +150 -0
- data/scss/foundation/components/_progress-bars.scss +79 -0
- data/scss/foundation/components/_range-slider.scss +148 -0
- data/scss/foundation/components/_reveal-new.scss +0 -0
- data/scss/foundation/components/_reveal.scss +216 -0
- data/scss/foundation/components/_side-nav.scss +93 -0
- data/scss/foundation/components/_split-buttons.scss +191 -0
- data/scss/foundation/components/_sub-nav.scss +125 -0
- data/scss/foundation/components/_switch.scss +294 -0
- data/scss/foundation/components/_tables.scss +97 -0
- data/scss/foundation/components/_tabs.scss +105 -0
- data/scss/foundation/components/_thumbs.scss +68 -0
- data/scss/foundation/components/_tooltips.scss +140 -0
- data/scss/foundation/components/_top-bar.scss +640 -0
- data/scss/foundation/components/_type.scss +493 -0
- data/scss/foundation/components/_visibility.scss +345 -0
- data/scss/foundation/test.html +0 -0
- data/scss/normalize.scss +423 -0
- data/spec/abide/abide.js +173 -0
- data/spec/abide/advanced.html +22 -0
- data/spec/abide/basic.html +13 -0
- data/spec/accordion/accordion.js +94 -0
- data/spec/accordion/basic.html +39 -0
- data/spec/accordion/grid.html +44 -0
- data/spec/accordion/multiexpand.html +20 -0
- data/spec/alert/alert.js +35 -0
- data/spec/alert/basic.html +4 -0
- data/spec/clearing/222.gif +0 -0
- data/spec/clearing/777.gif +0 -0
- data/spec/clearing/basic.html +5 -0
- data/spec/clearing/ccc.gif +0 -0
- data/spec/clearing/clearing.js +55 -0
- data/spec/dropdown/basic.html +10 -0
- data/spec/dropdown/dropdown.js +65 -0
- data/spec/equalizer/basic.html +24 -0
- data/spec/equalizer/equalizer.js +30 -0
- data/spec/framework/framework.js +14 -0
- data/spec/helpers.js +37 -0
- data/spec/interchange/basic.html +3 -0
- data/spec/interchange/interchange.js +60 -0
- data/spec/joyride/joyride.js +14 -0
- data/spec/magellan/magellan.js +14 -0
- data/spec/offcanvas/offcanvas.js +14 -0
- data/spec/orbit/orbit.js +14 -0
- data/spec/reveal/reveal.js +14 -0
- data/spec/tab/tab.js +14 -0
- data/spec/tooltip/tooltip.js +14 -0
- data/spec/topbar/multidropdown.html +60 -0
- data/spec/topbar/sticky.html +31 -0
- data/spec/topbar/topbar.js +96 -0
- metadata +238 -0
data/bower.json
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"name": "foundation",
|
3
|
+
"version": "5.2.2",
|
4
|
+
"main": [
|
5
|
+
"css/foundation.css",
|
6
|
+
"js/foundation.js"
|
7
|
+
],
|
8
|
+
"dependencies": {
|
9
|
+
"jquery": ">= 2.1.0",
|
10
|
+
"modernizr": ">= 2.7.2",
|
11
|
+
"fastclick": ">=0.6.11",
|
12
|
+
"jquery.cookie": "~1.4.0",
|
13
|
+
"jquery-placeholder": "~2.0.7"
|
14
|
+
},
|
15
|
+
"devDependencies": {
|
16
|
+
"jquery.autocomplete": "devbridge/jQuery-Autocomplete#1.2.9",
|
17
|
+
"lodash": "~2.4.1"
|
18
|
+
},
|
19
|
+
"private": true
|
20
|
+
}
|
data/composer.json
ADDED
data/foundation.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/foundation/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["ZURB"]
|
6
|
+
gem.email = ["foundation@zurb.com"]
|
7
|
+
gem.description = %q{ZURB Foundation on Sass/Compass}
|
8
|
+
gem.summary = %q{ZURB Foundation on Sass/Compass}
|
9
|
+
gem.homepage = "http://foundation.zurb.com"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\).reject {|f| f.match /^doc/}
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "zurb-foundation-5"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Foundation::VERSION
|
17
|
+
|
18
|
+
gem.add_dependency "sass", [">= 3.2.0"]
|
19
|
+
gem.add_development_dependency "rake"
|
20
|
+
gem.add_development_dependency "jasmine"
|
21
|
+
end
|
data/humans.txt
ADDED
@@ -0,0 +1,299 @@
|
|
1
|
+
;(function ($, window, document, undefined) {
|
2
|
+
'use strict';
|
3
|
+
|
4
|
+
Foundation.libs.abide = {
|
5
|
+
name : 'abide',
|
6
|
+
|
7
|
+
version : '5.2.2',
|
8
|
+
|
9
|
+
settings : {
|
10
|
+
live_validate : true,
|
11
|
+
focus_on_invalid : true,
|
12
|
+
error_labels: true, // labels with a for="inputId" will recieve an `error` class
|
13
|
+
timeout : 1000,
|
14
|
+
patterns : {
|
15
|
+
alpha: /^[a-zA-Z]+$/,
|
16
|
+
alpha_numeric : /^[a-zA-Z0-9]+$/,
|
17
|
+
integer: /^[-+]?\d+$/,
|
18
|
+
number: /^[-+]?\d*(?:\.\d+)?$/,
|
19
|
+
|
20
|
+
// amex, visa, diners
|
21
|
+
card : /^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/,
|
22
|
+
cvv : /^([0-9]){3,4}$/,
|
23
|
+
|
24
|
+
// http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#valid-e-mail-address
|
25
|
+
email : /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,
|
26
|
+
|
27
|
+
url: /^(https?|ftp|file|ssh):\/\/(((([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-zA-Z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-zA-Z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-zA-Z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-zA-Z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-zA-Z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-zA-Z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-zA-Z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/,
|
28
|
+
// abc.de
|
29
|
+
domain: /^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$/,
|
30
|
+
|
31
|
+
datetime: /^([0-2][0-9]{3})\-([0-1][0-9])\-([0-3][0-9])T([0-5][0-9])\:([0-5][0-9])\:([0-5][0-9])(Z|([\-\+]([0-1][0-9])\:00))$/,
|
32
|
+
// YYYY-MM-DD
|
33
|
+
date: /(?:19|20)[0-9]{2}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-9])|(?:(?!02)(?:0[1-9]|1[0-2])-(?:30))|(?:(?:0[13578]|1[02])-31))$/,
|
34
|
+
// HH:MM:SS
|
35
|
+
time : /^(0[0-9]|1[0-9]|2[0-3])(:[0-5][0-9]){2}$/,
|
36
|
+
dateISO: /^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/,
|
37
|
+
// MM/DD/YYYY
|
38
|
+
month_day_year : /^(0[1-9]|1[012])[- \/.](0[1-9]|[12][0-9]|3[01])[- \/.](19|20)\d\d$/,
|
39
|
+
|
40
|
+
// #FFF or #FFFFFF
|
41
|
+
color: /^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/
|
42
|
+
},
|
43
|
+
validators : {
|
44
|
+
equalTo: function(el, required, parent) {
|
45
|
+
var from = document.getElementById(el.getAttribute(this.add_namespace('data-equalto'))).value,
|
46
|
+
to = el.value,
|
47
|
+
valid = (from === to);
|
48
|
+
|
49
|
+
return valid;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
},
|
53
|
+
|
54
|
+
timer : null,
|
55
|
+
|
56
|
+
init : function (scope, method, options) {
|
57
|
+
this.bindings(method, options);
|
58
|
+
},
|
59
|
+
|
60
|
+
events : function (scope) {
|
61
|
+
var self = this,
|
62
|
+
form = self.S(scope).attr('novalidate', 'novalidate'),
|
63
|
+
settings = form.data(this.attr_name(true) + '-init') || {};
|
64
|
+
|
65
|
+
this.invalid_attr = this.add_namespace('data-invalid');
|
66
|
+
|
67
|
+
form
|
68
|
+
.off('.abide')
|
69
|
+
.on('submit.fndtn.abide validate.fndtn.abide', function (e) {
|
70
|
+
var is_ajax = /ajax/i.test(self.S(this).attr(self.attr_name()));
|
71
|
+
return self.validate(self.S(this).find('input, textarea, select').get(), e, is_ajax);
|
72
|
+
})
|
73
|
+
.on('reset', function() {
|
74
|
+
return self.reset($(this));
|
75
|
+
})
|
76
|
+
.find('input, textarea, select')
|
77
|
+
.off('.abide')
|
78
|
+
.on('blur.fndtn.abide change.fndtn.abide', function (e) {
|
79
|
+
self.validate([this], e);
|
80
|
+
})
|
81
|
+
.on('keydown.fndtn.abide', function (e) {
|
82
|
+
if (settings.live_validate === true) {
|
83
|
+
clearTimeout(self.timer);
|
84
|
+
self.timer = setTimeout(function () {
|
85
|
+
self.validate([this], e);
|
86
|
+
}.bind(this), settings.timeout);
|
87
|
+
}
|
88
|
+
});
|
89
|
+
},
|
90
|
+
|
91
|
+
reset : function (form) {
|
92
|
+
form.removeAttr(this.invalid_attr);
|
93
|
+
$(this.invalid_attr, form).removeAttr(this.invalid_attr);
|
94
|
+
$('.error', form).not('small').removeClass('error');
|
95
|
+
},
|
96
|
+
|
97
|
+
validate : function (els, e, is_ajax) {
|
98
|
+
var validations = this.parse_patterns(els),
|
99
|
+
validation_count = validations.length,
|
100
|
+
form = this.S(els[0]).closest('[data-' + this.attr_name(true) + ']'),
|
101
|
+
settings = form.data(this.attr_name(true) + '-init') || {},
|
102
|
+
submit_event = /submit/.test(e.type);
|
103
|
+
|
104
|
+
form.trigger('validated');
|
105
|
+
// Has to count up to make sure the focus gets applied to the top error
|
106
|
+
for (var i=0; i < validation_count; i++) {
|
107
|
+
if (!validations[i] && (submit_event || is_ajax)) {
|
108
|
+
if (settings.focus_on_invalid) els[i].focus();
|
109
|
+
form.trigger('invalid');
|
110
|
+
this.S(els[i]).closest('[data-' + this.attr_name(true) + ']').attr(this.invalid_attr, '');
|
111
|
+
return false;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
if (submit_event || is_ajax) {
|
116
|
+
form.trigger('valid');
|
117
|
+
}
|
118
|
+
|
119
|
+
form.removeAttr(this.invalid_attr);
|
120
|
+
|
121
|
+
if (is_ajax) return false;
|
122
|
+
|
123
|
+
return true;
|
124
|
+
},
|
125
|
+
|
126
|
+
parse_patterns : function (els) {
|
127
|
+
var i = els.length,
|
128
|
+
el_patterns = [];
|
129
|
+
|
130
|
+
while (i--) {
|
131
|
+
el_patterns.push(this.pattern(els[i]));
|
132
|
+
}
|
133
|
+
|
134
|
+
return this.check_validation_and_apply_styles(el_patterns);
|
135
|
+
},
|
136
|
+
|
137
|
+
pattern : function (el) {
|
138
|
+
var type = el.getAttribute('type'),
|
139
|
+
required = typeof el.getAttribute('required') === 'string';
|
140
|
+
|
141
|
+
var pattern = el.getAttribute('pattern') || '';
|
142
|
+
|
143
|
+
if (this.settings.patterns.hasOwnProperty(pattern) && pattern.length > 0) {
|
144
|
+
return [el, this.settings.patterns[pattern], required];
|
145
|
+
} else if (pattern.length > 0) {
|
146
|
+
return [el, new RegExp('^'+pattern+'$'), required];
|
147
|
+
}
|
148
|
+
|
149
|
+
if (this.settings.patterns.hasOwnProperty(type)) {
|
150
|
+
return [el, this.settings.patterns[type], required];
|
151
|
+
}
|
152
|
+
|
153
|
+
pattern = /.*/;
|
154
|
+
|
155
|
+
return [el, pattern, required];
|
156
|
+
},
|
157
|
+
|
158
|
+
check_validation_and_apply_styles : function (el_patterns) {
|
159
|
+
var i = el_patterns.length,
|
160
|
+
validations = [],
|
161
|
+
form = this.S(el_patterns[0][0]).closest('[data-' + this.attr_name(true) + ']'),
|
162
|
+
settings = form.data(this.attr_name(true) + '-init') || {};
|
163
|
+
|
164
|
+
while (i--) {
|
165
|
+
var el = el_patterns[i][0],
|
166
|
+
required = el_patterns[i][2],
|
167
|
+
value = el.value,
|
168
|
+
direct_parent = this.S(el).parent(),
|
169
|
+
validator = el.getAttribute(this.add_namespace('data-abide-validator')),
|
170
|
+
is_radio = el.type === "radio",
|
171
|
+
is_checkbox = el.type === "checkbox",
|
172
|
+
label = this.S('label[for="' + el.getAttribute('id') + '"]'),
|
173
|
+
valid_length = (required) ? (el.value.length > 0) : true;
|
174
|
+
|
175
|
+
var parent, valid;
|
176
|
+
|
177
|
+
// support old way to do equalTo validations
|
178
|
+
if(el.getAttribute(this.add_namespace('data-equalto'))) { validator = "equalTo" }
|
179
|
+
|
180
|
+
if (!direct_parent.is('label')) {
|
181
|
+
parent = direct_parent;
|
182
|
+
} else {
|
183
|
+
parent = direct_parent.parent();
|
184
|
+
}
|
185
|
+
|
186
|
+
if (is_radio && required) {
|
187
|
+
validations.push(this.valid_radio(el, required));
|
188
|
+
} else if (is_checkbox && required) {
|
189
|
+
validations.push(this.valid_checkbox(el, required));
|
190
|
+
} else if (validator) {
|
191
|
+
valid = this.settings.validators[validator].apply(this, [el, required, parent])
|
192
|
+
validations.push(valid);
|
193
|
+
|
194
|
+
if (valid) {
|
195
|
+
this.S(el).removeAttr(this.invalid_attr);
|
196
|
+
parent.removeClass('error');
|
197
|
+
} else {
|
198
|
+
this.S(el).attr(this.invalid_attr, '');
|
199
|
+
parent.addClass('error');
|
200
|
+
}
|
201
|
+
|
202
|
+
} else {
|
203
|
+
|
204
|
+
if (el_patterns[i][1].test(value) && valid_length ||
|
205
|
+
!required && el.value.length < 1 || $(el).attr('disabled')) {
|
206
|
+
this.S(el).removeAttr(this.invalid_attr);
|
207
|
+
parent.removeClass('error');
|
208
|
+
if (label.length > 0 && settings.error_labels) label.removeClass('error');
|
209
|
+
|
210
|
+
validations.push(true);
|
211
|
+
$(el).triggerHandler('valid');
|
212
|
+
} else {
|
213
|
+
this.S(el).attr(this.invalid_attr, '');
|
214
|
+
parent.addClass('error');
|
215
|
+
if (label.length > 0 && settings.error_labels) label.addClass('error');
|
216
|
+
|
217
|
+
validations.push(false);
|
218
|
+
$(el).triggerHandler('invalid');
|
219
|
+
}
|
220
|
+
}
|
221
|
+
}
|
222
|
+
|
223
|
+
return validations;
|
224
|
+
},
|
225
|
+
|
226
|
+
valid_checkbox : function(el, required) {
|
227
|
+
var el = this.S(el),
|
228
|
+
valid = (el.is(':checked') || !required);
|
229
|
+
|
230
|
+
if (valid) {
|
231
|
+
el.removeAttr(this.invalid_attr).parent().removeClass('error');
|
232
|
+
} else {
|
233
|
+
el.attr(this.invalid_attr, '').parent().addClass('error');
|
234
|
+
}
|
235
|
+
|
236
|
+
return valid;
|
237
|
+
},
|
238
|
+
|
239
|
+
valid_radio : function (el, required) {
|
240
|
+
var name = el.getAttribute('name'),
|
241
|
+
group = this.S(el).closest('[data-' + this.attr_name(true) + ']').find("[name="+name+"]"),
|
242
|
+
count = group.length,
|
243
|
+
valid = false;
|
244
|
+
|
245
|
+
// Has to count up to make sure the focus gets applied to the top error
|
246
|
+
for (var i=0; i < count; i++) {
|
247
|
+
if (group[i].checked) valid = true;
|
248
|
+
}
|
249
|
+
|
250
|
+
// Has to count up to make sure the focus gets applied to the top error
|
251
|
+
for (var i=0; i < count; i++) {
|
252
|
+
if (valid) {
|
253
|
+
this.S(group[i]).removeAttr(this.invalid_attr).parent().removeClass('error');
|
254
|
+
} else {
|
255
|
+
this.S(group[i]).attr(this.invalid_attr, '').parent().addClass('error');
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
259
|
+
return valid;
|
260
|
+
},
|
261
|
+
|
262
|
+
valid_equal: function(el, required, parent) {
|
263
|
+
var from = document.getElementById(el.getAttribute(this.add_namespace('data-equalto'))).value,
|
264
|
+
to = el.value,
|
265
|
+
valid = (from === to);
|
266
|
+
|
267
|
+
if (valid) {
|
268
|
+
this.S(el).removeAttr(this.invalid_attr);
|
269
|
+
parent.removeClass('error');
|
270
|
+
} else {
|
271
|
+
this.S(el).attr(this.invalid_attr, '');
|
272
|
+
parent.addClass('error');
|
273
|
+
}
|
274
|
+
|
275
|
+
return valid;
|
276
|
+
},
|
277
|
+
|
278
|
+
valid_oneof: function(el, required, parent, doNotValidateOthers) {
|
279
|
+
var el = this.S(el),
|
280
|
+
others = this.S('[' + this.add_namespace('data-oneof') + ']'),
|
281
|
+
valid = others.filter(':checked').length > 0;
|
282
|
+
|
283
|
+
if (valid) {
|
284
|
+
el.removeAttr(this.invalid_attr).parent().removeClass('error');
|
285
|
+
} else {
|
286
|
+
el.attr(this.invalid_attr, '').parent().addClass('error');
|
287
|
+
}
|
288
|
+
|
289
|
+
if (!doNotValidateOthers) {
|
290
|
+
var _this = this;
|
291
|
+
others.each(function() {
|
292
|
+
_this.valid_oneof.call(_this, this, null, null, true);
|
293
|
+
});
|
294
|
+
}
|
295
|
+
|
296
|
+
return valid;
|
297
|
+
}
|
298
|
+
};
|
299
|
+
}(jQuery, this, this.document));
|
@@ -0,0 +1,54 @@
|
|
1
|
+
;(function ($, window, document, undefined) {
|
2
|
+
'use strict';
|
3
|
+
|
4
|
+
Foundation.libs.accordion = {
|
5
|
+
name : 'accordion',
|
6
|
+
|
7
|
+
version : '5.2.2',
|
8
|
+
|
9
|
+
settings : {
|
10
|
+
active_class: 'active',
|
11
|
+
multi_expand: false,
|
12
|
+
toggleable: true
|
13
|
+
},
|
14
|
+
|
15
|
+
init : function (scope, method, options) {
|
16
|
+
this.bindings(method, options);
|
17
|
+
},
|
18
|
+
|
19
|
+
events : function () {
|
20
|
+
var self = this;
|
21
|
+
var S = this.S;
|
22
|
+
S(this.scope)
|
23
|
+
.off('.fndtn.accordion')
|
24
|
+
.on('click.fndtn.accordion', '[' + this.attr_name() + '] dd > a', function (e) {
|
25
|
+
var accordion = S(this).closest('[' + self.attr_name() + ']'),
|
26
|
+
target = S('#' + this.href.split('#')[1]),
|
27
|
+
siblings = S('dd > .content', accordion),
|
28
|
+
aunts = $('dd', accordion),
|
29
|
+
settings = accordion.data(self.attr_name(true) + '-init'),
|
30
|
+
active_content = S('dd > .content.' + settings.active_class, accordion),
|
31
|
+
active_parent = S('dd.' + settings.active_class, accordion);
|
32
|
+
e.preventDefault();
|
33
|
+
|
34
|
+
if (! S(this).closest('dl').is(accordion)) { return; }
|
35
|
+
|
36
|
+
if (settings.toggleable && target.is(active_content)) {
|
37
|
+
active_parent.toggleClass(settings.active_class, false);
|
38
|
+
return target.toggleClass(settings.active_class, false);
|
39
|
+
}
|
40
|
+
|
41
|
+
if (!settings.multi_expand) {
|
42
|
+
siblings.removeClass(settings.active_class);
|
43
|
+
aunts.removeClass(settings.active_class);
|
44
|
+
}
|
45
|
+
|
46
|
+
target.addClass(settings.active_class).parent().addClass(settings.active_class);
|
47
|
+
});
|
48
|
+
},
|
49
|
+
|
50
|
+
off : function () {},
|
51
|
+
|
52
|
+
reflow : function () {}
|
53
|
+
};
|
54
|
+
}(jQuery, this, this.document));
|
@@ -0,0 +1,43 @@
|
|
1
|
+
;(function ($, window, document, undefined) {
|
2
|
+
'use strict';
|
3
|
+
|
4
|
+
Foundation.libs.alert = {
|
5
|
+
name : 'alert',
|
6
|
+
|
7
|
+
version : '5.2.2',
|
8
|
+
|
9
|
+
settings : {
|
10
|
+
callback: function (){}
|
11
|
+
},
|
12
|
+
|
13
|
+
init : function (scope, method, options) {
|
14
|
+
this.bindings(method, options);
|
15
|
+
},
|
16
|
+
|
17
|
+
events : function () {
|
18
|
+
var self = this,
|
19
|
+
S = this.S;
|
20
|
+
|
21
|
+
$(this.scope).off('.alert').on('click.fndtn.alert', '[' + this.attr_name() + '] a.close', function (e) {
|
22
|
+
var alertBox = S(this).closest('[' + self.attr_name() + ']'),
|
23
|
+
settings = alertBox.data(self.attr_name(true) + '-init') || self.settings;
|
24
|
+
|
25
|
+
e.preventDefault();
|
26
|
+
if ('transitionend' in window || 'webkitTransitionEnd' in window || 'oTransitionEnd' in window) {
|
27
|
+
alertBox.addClass("alert-close");
|
28
|
+
alertBox.on('transitionend webkitTransitionEnd oTransitionEnd', function(e) {
|
29
|
+
S(this).trigger('close').remove();
|
30
|
+
settings.callback();
|
31
|
+
});
|
32
|
+
} else {
|
33
|
+
alertBox.fadeOut(300, function () {
|
34
|
+
S(this).trigger('close').remove();
|
35
|
+
settings.callback();
|
36
|
+
});
|
37
|
+
}
|
38
|
+
});
|
39
|
+
},
|
40
|
+
|
41
|
+
reflow : function () {}
|
42
|
+
};
|
43
|
+
}(jQuery, this, this.document));
|