Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Feb 11, 2012
1 parent 4e2a345 commit 5148335
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jquery.placeholder.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! http://mths.be/placeholder v2.0.2 by @mathias */
/*! http://mths.be/placeholder v2.0.3 by @mathias */
;(function(window, document, $) {

var isInputSupported = 'placeholder' in document.createElement('input'),
Expand Down Expand Up @@ -41,7 +41,7 @@
'set': function(element, value) {
var $element = $(element);
if (!$element.data('placeholder-enabled')) {
return $element.value = value;
return element.value = value;
}
if (value == '') {
element.value = value;
Expand Down
4 changes: 2 additions & 2 deletions jquery.placeholder.min.js

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

0 comments on commit 5148335

Please sign in to comment.