mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04: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');
|