Joe Cheng
fa39a55eca
Wow, IE10 is *really* picky about websocket URLs
2013-08-23 15:42:19 -07:00
Joe Cheng
c3a1ba2f2d
Make websocket URL work with IE10
...
See https://github.com/einaros/ws/issues/131#issuecomment-15715373
2013-08-23 15:38:12 -07:00
Joe Cheng
b19225c747
Don't send websocket subprotocol
...
Some time recently, Google Chrome started actually caring what the
client sends for this and what the server replies with. httpuv
doesn't currently have any logic for subprotocol selection, so
it always replies with no Sec-WebSocket-Protocol header, which
now Google Chrome reacts to by closing the websocket connection.
This problem goes away if we just don't send a subprotocol at all.
2013-08-23 02:15:54 -07:00
Winston Chang
cd8ad9a2ec
Add compatibility wrapper for getComputedStyle in IE8
2013-07-27 19:41:56 -05:00
Joe Cheng
f79223ed58
Merge remote-tracking branch 'origin/master' into reactlog
2013-07-07 01:20:59 -07:00
Joe Cheng
2d28218a2a
Allow Cmd+F3 to launch reactlog
2013-07-07 01:20:40 -07:00
Joe Cheng
35974f2ee1
Firefox scrubbing fix
2013-07-06 23:13:25 -07:00
Joe Cheng
1f73323fb9
reactlog: Support arbitrary temporal movement
2013-07-06 23:06:38 -07:00
Joe Cheng
a3d0736eec
Use more obscure keyboard shortcut for reactlog
2013-07-06 18:27:10 -07:00
Joe Cheng
4bdd486c00
reactlog: Firefox compatibility; visual tweaks
2013-07-06 18:22:40 -07:00
Joe Cheng
c3895c9bd7
Configurable hover delay type (debounce/throttle)
2013-07-05 17:29:57 -07:00
Joe Cheng
a5dc5c89e8
Firefox locator compat
2013-07-05 12:30:14 -07:00
Joe Cheng
07e021199e
Use crosshair cursor when plot supports hover/click
2013-07-04 23:42:44 -07:00
Joe Cheng
99013f7998
Launch reactlog from Shiny app with F3
2013-07-03 12:17:36 -07:00
Joe Cheng
fc396800db
reactlog: Automatically run first step
2013-07-03 08:56:28 -07:00
Joe Cheng
6d03ae57ac
reactlog: Show value changes
2013-07-03 00:05:28 -07:00
Joe Cheng
4a0aa57355
reactlog node shapes, visible labels
2013-07-02 17:48:09 -07:00
Joe Cheng
7db737494c
Reverse reactlog arrow orientation
2013-07-02 13:21:39 -07:00
Joe Cheng
b285501c44
reactlog code cleanup
2013-07-02 08:38:24 -07:00
Joe Cheng
2f9b29994f
Add showReactLog function
2013-07-02 03:17:30 -07:00
Joe Cheng
28a52bb658
More visual improvements to reactlog
2013-07-02 02:59:37 -07:00
Joe Cheng
82bc19374c
Improve appearance of reactlog
2013-07-02 02:12:07 -07:00
Joe Cheng
0b23f30bb7
Work in progress
2013-07-02 01:29:33 -07:00
Winston Chang
d403ec7399
Make hover delay configurable
2013-06-24 16:39:04 -05:00
Winston Chang
6ac77835df
Fix Retina compatibility (revert b113119)
2013-06-24 16:31:43 -05:00
Joe Cheng
b113119a9a
Retina display compatibility
2013-06-21 21:38:23 -07:00
Joe Cheng
b713057614
Implement click and hover events on static plots
...
plotOutput now takes clickId and hoverId params that tell Shiny
where to send click and hover events for that plot. The server.R
file can listen on input$<clickId> and/or input$<hoverId>. In
both cases, the resulting value will have numeric x and y elements
that indicate the mouse position in user coordinates. In the case
of hover events, it's also possible to have a NULL value which
means the mouse is not currently hovering over the plot.
2013-06-21 16:58:43 -07:00
Joe Cheng
6ee7dcdd51
Fix several bugs relating to suspendWhenHidden
...
- If an output is bound in the UI before it exists on the server, the
server will suspend the new output until something else causes
manageHiddenOutputs to be triggered. The refactor in shiny.R sets
the suspended flag to .shouldSuspend.
- As part of the previous refactor, we don't set suspendOnHidden in
defineOutput; instead we leave it empty and .shouldSuspend knows
what the default should be.
- In shiny.js, unbound controls were not being suspended. This was
fixed by having sendOutputHiddenState be stateful; anything in
a visible state that disappears on the next iteration is marked
as hidden. Also unbindAll now calls sendOutputHiddenState.
2013-05-27 12:52:33 -07:00
Winston Chang
4a92bb91df
Initialize slider at correct time
2013-05-24 18:58:47 -05:00
Joe Cheng
69522c422c
Fix rendering issues when slider gets too wide
...
Synced to jslider commit (from rstudio/jslider fork):
6de6ef7b2c788cbcec74dd51e0008e12247e6638
2013-05-23 12:02:43 -07:00
Joe Cheng
dd54740d36
Fix submit button interactions with tabs, plot sizes
2013-04-29 13:08:04 -07:00
Winston Chang
0c19105fbf
Add dateInput and dateRangeInput
...
Also:
* add initialize() method for input bindings
* cleanups for JShint
2013-04-24 12:18:20 -05:00
Joe Cheng
10d2432df5
Merge pull request #148 from wch/sendmessage
...
Add support for sending arbitrary messages to client
2013-04-22 16:40:01 -07:00
Winston Chang
b6795e5c63
Move actionbutton into Shiny proper
2013-04-18 15:11:13 -05:00
Winston Chang
ef85d063c2
Make external message handlers use 'custom'
2013-04-18 13:40:32 -05:00
Winston Chang
59755971e5
Add message handlers
2013-04-18 12:40:19 -05:00
Winston Chang
c5ab831a87
Fixes for jshint
...
Conflicts:
inst/www/shared/shiny.js
2013-04-18 11:41:52 -05:00
Winston Chang
2897059503
Allow setting labels for all input objects
2013-04-08 18:09:40 -05:00
Winston Chang
d491f9df5a
updateCheckboxGroupInput: clean up and allow setting labels
2013-04-08 17:01:00 -05:00
Winston Chang
bc52bafa8d
Add methods for setting bootstrapTabInputBinding
2013-04-06 01:00:18 -05:00
Winston Chang
5857e3f75e
Allow setting value of sliders when they have range
2013-04-05 22:56:12 -05:00
Winston Chang
4cbbfccb6d
Make sure not to bind new-style multi-inputs
2013-04-05 21:57:45 -05:00
Winston Chang
21f3b1cf34
Add checkboxGroupInputBinding
2013-04-05 21:57:45 -05:00
Winston Chang
f7b384e9b6
Add radioInputBinding
2013-04-05 21:57:45 -05:00
Winston Chang
78341ea2f1
Trigger change when message sent to input bindings
2013-04-05 21:57:45 -05:00
Winston Chang
3f8a4d4273
Add getState and receiveMessage support to selectInputBinding
2013-04-05 21:57:45 -05:00
Winston Chang
c88ccbf9bc
Put inputMessage in a queue
2013-04-05 21:57:45 -05:00
Winston Chang
46389131bc
Add functions for sending messages to client
2013-03-30 21:07:22 -05:00
Winston Chang
bcc2c377a0
Add messenge-sending support
2013-03-29 14:32:34 -05:00
Winston Chang
e0193151db
shiny.js: allow setting inputs and getting input state
2013-03-28 16:15:24 -05:00