Skip to content

Commit 0a01f1a

Browse files
phloxicjQuery Tools
authored andcommitted
Past participle of "to build" is "built"
1 parent 60fb5c3 commit 0a01f1a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

release-notes/version-1.x.x.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Circular 1.0.1
220220
- panes can be given as jQuery object: (http://flowplayer.org/tools/forum/25/26677)
221221

222222
1.0.2
223-
- new build-in effect: "ajax"
223+
- new built-in effect: "ajax"
224224
- a new configuration property <samp>fadeOutSpeed</samp> for the "fade" effect for performing "crossfades"
225225
- new <samp>rotate</samp> configuration property for cycling trought the tabs in circular manner
226226
- <samp>history</samp> option is now implemented as a plugin. Change it to <samp>$("..").tabs().history();</samp>
@@ -308,4 +308,4 @@ Circular 1.0.1
308308

309309
- tooltip now closes when mouse leaves the tip while it's still being animated http://flowplayer.org/forum/20/20635#post-20793
310310

311-
- new build-in effect: "fade" with two configuration variables: fadeInSpeed, fadeOutSpeed
311+
- new built-in effect: "fade" with two configuration variables: fadeInSpeed, fadeOutSpeed

src/form/form.datepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
max = rfc3339(input.attr("max")) || roll(value, conf.max);
157157

158158

159-
// Replace build-in date input: NOTE: input.attr("type", "text") throws exception by the browser
159+
// Replace built-in date input: NOTE: input.attr("type", "text") throws exception by the browser
160160
var tmp = $('<input/>')
161161
.attr("type", "text")
162162
.attr("name", input.attr("name"))

src/form/form.validator.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
messageClass: 'error', // error message element's class name
3737
messagePosition: 'after', // error message position related to the field
3838
lang: 'en', // default language for error messages
39-
effect: 'default', // show/hide effect for error message. only 'default' is build-in
39+
effect: 'default', // show/hide effect for error message. only 'default' is built-in
4040

4141
// when to check for validity?
4242
events: {
@@ -146,7 +146,7 @@
146146
}
147147

148148

149-
/******* build-in HTML5 standard validators *********/
149+
/******* built-in HTML5 standard validators *********/
150150

151151
v.fn(isType("email"), "Invalid email address", function(el, v) {
152152
return !v || emailRe.test(v);
@@ -201,7 +201,7 @@
201201
});
202202

203203

204-
/******* build-in custom validators *********/
204+
/******* built-in custom validators *********/
205205

206206
// equalto(fieldName)
207207
v.fn("equalto", "Value must equal to $1 field", function(el, name) {

0 commit comments

Comments
 (0)