Index: dashboard/dashboard/elements/bisect-button.html |
diff --git a/dashboard/dashboard/elements/bisect-button.html b/dashboard/dashboard/elements/bisect-button.html |
index fd153f2267db6c19728618d85448c40a8baeba6c..2fb5d2141e0b9de87642654cbc99255a77bb70f1 100644 |
--- a/dashboard/dashboard/elements/bisect-button.html |
+++ b/dashboard/dashboard/elements/bisect-button.html |
@@ -8,6 +8,7 @@ found in the LICENSE file. |
<link rel="import" href="/components/paper-button/paper-button.html"> |
<link rel="import" href="/dashboard/elements/bisect-form.html"> |
+<link rel="import" href="/dashboard/pinpoint/elements/new-job-dialog.html"> |
<link rel="import" href="/dashboard/static/simple_xhr.html"> |
<dom-module id="bisect-button"> |
@@ -47,6 +48,7 @@ found in the LICENSE file. |
later-revision="{{bisectInfo.badRev}}" |
test-path="{{bisectInfo.testPath}}" |
bug-id="{{bugId}}"></bisect-form> |
+ <new-job-dialog id="pinpoint" ENDPOINT="/start_try_job"></new-job-dialog> |
</template> |
<script> |
'use strict'; |
@@ -87,7 +89,8 @@ found in the LICENSE file. |
* Displays the bisect-form when the bisect button is clicked. |
*/ |
onBisect() { |
- this.$.bisect.show(); |
+ //this.$.bisect.show(); |
+ this.$.pinpoint.show(); |
} |
}); |
})(); |