aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html
diff options
context:
space:
mode:
authorGravatar Dan Mané <danmane@gmail.com>2016-05-13 14:05:27 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-13 15:12:38 -0700
commit0ffcb6c99fc7de4e2a956382a63c9d20720c513a (patch)
treeda1ba2f5fed2039b68e4725a67cd59d63b9c0678 /tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html
parentcfa7ffbbd81f2d40221a68a6da4e508d459db5ee (diff)
Add regex filtering to the TensorBoard run selector.
Change: 122299757
Diffstat (limited to 'tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html')
-rw-r--r--tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html7
1 files changed, 1 insertions, 6 deletions
diff --git a/tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html b/tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html
index 6bb538ff25..26efa6a1a3 100644
--- a/tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html
+++ b/tensorflow/tensorboard/components/tf-event-dashboard/tf-run-selector.html
@@ -1,6 +1,5 @@
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-button/paper-button.html">
-<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../tf-imports/lodash.html">
<link rel="import" href="../tf-dashboard-common/scrollbar-style.html">
<link rel="import" href="../tf-multi-checkbox/tf-multi-checkbox.html">
@@ -86,11 +85,7 @@ Properties out:
colorScale: Object, // TF.ColorScale
},
_toggleAll: function() {
- if (this.outSelected.length > 0) {
- this.outSelected = [];
- } else {
- this.outSelected = this.runs.slice();
- }
+ this.$.multiCheckbox.toggleAll();
},
});
</script>