Skip to content

Commit

Permalink
Release v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcandre committed Feb 11, 2016
1 parent 82ea835 commit b9900b2
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JavaScript form validation, without actually writing a single line of JavaScript

## Version

2.3.1
2.3.2

## Doc

Expand Down
10 changes: 5 additions & 5 deletions dist/parsley.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/parsley.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/parsley.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/parsley.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions doc/annotated-source/ui.html
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ <h1>ui.js</h1>

</div>

<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> $handler = <span class="hljs-keyword">this</span>.options.classHandler();</pre></div></div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> $handler = <span class="hljs-keyword">this</span>.options.classHandler.call(<span class="hljs-keyword">this</span>, <span class="hljs-keyword">this</span>);</pre></div></div>

</li>

Expand Down Expand Up @@ -746,7 +746,7 @@ <h1>ui.js</h1>
<span class="hljs-keyword">else</span>
ParsleyUtils.warn(<span class="hljs-string">'The errors container `'</span> + <span class="hljs-keyword">this</span>.options.errorsContainer + <span class="hljs-string">'` does not exist in DOM'</span>);
} <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (<span class="hljs-string">'function'</span> === <span class="hljs-keyword">typeof</span> <span class="hljs-keyword">this</span>.options.errorsContainer)
$errorsContainer = <span class="hljs-keyword">this</span>.options.errorsContainer();
$errorsContainer = <span class="hljs-keyword">this</span>.options.errorsContainer.call(<span class="hljs-keyword">this</span>, <span class="hljs-keyword">this</span>);

<span class="hljs-keyword">if</span> (<span class="hljs-string">'undefined'</span> !== <span class="hljs-keyword">typeof</span> $errorsContainer &amp;&amp; $errorsContainer.length)
<span class="hljs-keyword">return</span> $errorsContainer.append(<span class="hljs-keyword">this</span>._ui.$errorsWrapper);
Expand Down
4 changes: 2 additions & 2 deletions doc/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ <h3 class="text-muted"><a href="../">Parsley</a></h3>

<!-- Jumbotron -->
<div class="jumbotron">
<h1>Download <em>Parsley</em> <small class="parsley-version">v2.3.1</small></h1>
<h1>Download <em>Parsley</em> <small class="parsley-version">v2.3.2</small></h1>
<hr></hr>

<div class="col-md-12"><h2>Whole project..</h2></div>

<div class="col-md-12"><code>$ bower install --save parsleyjs</code></div>
<div class="col-md-12"><code>$ npm install --save parsleyjs</code></div>
<div class="col-md-12"><a href="https://github.com/guillaumepotier/Parsley.js/releases/tag/2.3.1" class="download" data-version="zipball" target="_blank">parsley.zip</a> <small>250ko</small></div>
<div class="col-md-12"><a href="https://github.com/guillaumepotier/Parsley.js/releases/tag/2.3.2" class="download" data-version="zipball" target="_blank">parsley.zip</a> <small>250ko</small></div>

<div class="col-md-12"><h2>..or pick & go!</h2></div>

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h3 class="text-muted"><a href="#">Parsley</a></h3>
<h1><em>Parsley</em>, the <strong>ultimate</strong> JavaScript <strong>form validation</strong> library</h1>
<p class="lead">Validating forms frontend have never been so <em>powerful</em> and <em>easy</em>.</p>
<p><a class="btn btn-lg btn-go" href="doc/index.html" role="button">Get started today</a></p>
<p class="version"><i class="icon glyphicon glyphicon-tag"></i>&nbsp;<span class="parsley-version">v2.3.1</span></p>
<p class="version"><i class="icon glyphicon glyphicon-tag"></i>&nbsp;<span class="parsley-version">v2.3.2</span></p>
</div>

<!-- Example row of columns -->
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parsleyjs",
"version": "2.3.1",
"version": "2.3.2",
"homepage": "http://parsleyjs.org",
"license": "MIT",
"description": "Validate your forms, frontend, without writing a single line of javascript!",
Expand Down

0 comments on commit b9900b2

Please sign in to comment.