Skip to content

Commit 7dfa7d7

Browse files
committed
Fix issue rstudio#26: Shiny.OutputBindings not correctly exported
1 parent b8b1a89 commit 7dfa7d7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: shiny
22
Type: Package
33
Title: Web Application Framework for R
4-
Version: 0.1.6
5-
Date: 2012-09-25
4+
Version: 0.1.7
5+
Date: 2012-10-24
66
Author: RStudio, Inc.
77
Maintainer: Joe Cheng <[email protected]>
88
Description: Shiny makes it incredibly easy to build interactive web

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
shiny 0.1.7
2+
--------------------------------------------------------------------------------
3+
4+
* Fix issue #26: Shiny.OutputBindings not correctly exported
5+
6+
17
shiny 0.1.6
28
--------------------------------------------------------------------------------
39

inst/www/shared/shiny.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@
829829
var outputBindings = exports.outputBindings = new BindingRegistry();
830830

831831

832-
var OutputBinding = function() {};
832+
var OutputBinding = exports.OutputBinding = function() {};
833833
(function() {
834834
// Returns a jQuery object or element array that contains the
835835
// descendants of scope that match this binding

0 commit comments

Comments
 (0)