mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-10 07:28:01 -05:00
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
var textareaInputBinding = {};
|
|
$.extend(textareaInputBinding, textInputBinding, {
|
|
find: function(scope) {
|
|
return $(scope).find('textarea');
|
|
}
|
|
});
|
|
inputBindings.register(textareaInputBinding, 'shiny.textareaInput');
|