Skip to content

Commit

Permalink
Fixed bug in SelectionWidget
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed May 12, 2016
1 parent fb021e0 commit 5b6b9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/widgets/widgets.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ SelectionWidget.prototype.get_key = function(current_vals) {
SelectionWidget.prototype.set_frame = function(dim_val, dim_idx){
this.current_vals[dim_idx] = dim_val;
var current = this.get_key(this.current_vals);
if(current === undefined) {
if(current === undefined && !this.dynamic) {
return
}
if (this.dynamic || !this.cached) {
Expand Down

0 comments on commit 5b6b9af

Please sign in to comment.