Remove extraneous indenting

This commit is contained in:
Winston Chang
2015-03-23 14:01:57 -05:00
parent ceb428b8bd
commit 15e53ca55e
32 changed files with 7499 additions and 7513 deletions

View File

@@ -1,11 +1,11 @@
var textOutputBinding = new OutputBinding();
$.extend(textOutputBinding, {
find: function(scope) {
return $(scope).find('.shiny-text-output');
},
renderValue: function(el, data) {
$(el).text(data);
}
});
outputBindings.register(textOutputBinding, 'shiny.textOutput');
var textOutputBinding = new OutputBinding();
$.extend(textOutputBinding, {
find: function(scope) {
return $(scope).find('.shiny-text-output');
},
renderValue: function(el, data) {
$(el).text(data);
}
});
outputBindings.register(textOutputBinding, 'shiny.textOutput');