-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* ---------------------------------------------------------------------------- | ||
* "THE BEER-WARE LICENSE" (Revision 42): | ||
* <[email protected]> wrote this file. As long as you retain this notice you | ||
* can do whatever you want with this stuff. If we meet some day, and you think | ||
* this stuff is worth it, you can buy me a beer in return. Jevin O. Sewaruth | ||
* ---------------------------------------------------------------------------- | ||
* | ||
* Autogrow Textarea Plugin Version v3.0 | ||
* http://www.technoreply.com/autogrow-textarea-plugin-3-0 | ||
* | ||
* THIS PLUGIN IS DELIVERD ON A PAY WHAT YOU WHANT BASIS. IF THE PLUGIN WAS USEFUL TO YOU, PLEASE CONSIDER BUYING THE PLUGIN HERE : | ||
* https://sites.fastspring.com/technoreply/instant/autogrowtextareaplugin | ||
* | ||
* Date: October 15, 2012 | ||
*/ | ||
|
||
jQuery.fn.autoGrow = function() { | ||
return this.each(function() { | ||
|
||
var createMirror = function(textarea) { | ||
jQuery(textarea).after('<div class="autogrow-textarea-mirror"></div>'); | ||
return jQuery(textarea).next('.autogrow-textarea-mirror')[0]; | ||
} | ||
|
||
var sendContentToMirror = function (textarea) { | ||
mirror.innerHTML = String(textarea.value).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(/</g, '<').replace(/>/g, '>').replace(/\n/g, '<br />') + '.<br/>.'; | ||
|
||
if (jQuery(textarea).height() != jQuery(mirror).height()) | ||
jQuery(textarea).height(jQuery(mirror).height()); | ||
} | ||
|
||
var growTextarea = function () { | ||
sendContentToMirror(this); | ||
} | ||
|
||
// Create a mirror | ||
var mirror = createMirror(this); | ||
|
||
// Style the mirror | ||
mirror.style.display = 'none'; | ||
mirror.style.wordWrap = 'break-word'; | ||
mirror.style.whiteSpace = 'normal'; | ||
mirror.style.padding = jQuery(this).css('padding'); | ||
mirror.style.width = jQuery(this).css('width'); | ||
mirror.style.fontFamily = jQuery(this).css('font-family'); | ||
mirror.style.fontSize = jQuery(this).css('font-size'); | ||
mirror.style.lineHeight = jQuery(this).css('line-height'); | ||
|
||
// Style the textarea | ||
this.style.overflow = "hidden"; | ||
this.style.minHeight = this.rows+"em"; | ||
|
||
// Bind the textarea's event | ||
this.onkeyup = growTextarea; | ||
|
||
// Fire the event for text already present | ||
sendContentToMirror(this); | ||
|
||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters