The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/packages/meteor-autosize
Martin Filser 6d0f0c3606 meteor-autosize, on_use replaced with onUse, add_files replaced with addFiles 3 years ago
..
img Adding verron:autosize (meteor-autoresize) 4 years ago
lib updated meteor-autosize to version 5.0.1 4 years ago
LICENSE Adding verron:autosize (meteor-autoresize) 4 years ago
README.md Adding verron:autosize (meteor-autoresize) 4 years ago
package.js meteor-autosize, on_use replaced with onUse, add_files replaced with addFiles 3 years ago

README.md

meteor-autosize

Ever wondered how to make autoresizable Facebook-style textarea inputs? Autosize is a small, stand-alone script to automatically adjust (resize) textarea height to fit text. Repackaged for Meteor.

screenshot1 screenshot2

Installation

meteor add verron:autosize

Example

// from a NodeList
autosize(document.querySelectorAll('textarea'));

// from a single Node
autosize(document.querySelector('textarea'));

// from a jQuery collection
autosize($('textarea'));

Browser compatibility

Chrome Firefox IE Safari iOS Safari Android Opera Mini Windows Phone IE
yes yes 9 yes yes 4 ? 8.1

Documentation and Demo

http://www.jacklmoore.com/autosize/

Original package

https://github.com/jackmoore/autosize/

Author

The Meteor repackage was created by Spendflow, updated by Kelly Copley (@copleykj) for the new 0.9.0 packaging system and updated to v3 (pure javascript version) by Ronen Verdi (@v3rron).