forked from jdbranham/grafana-diagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
82,284 additions
and
95,833 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
<h5 class="section-heading">Diagram Definition</h5> | ||
|
||
|
||
<label><input type="radio" ng-model="ctrl.panel.mode" value="url" ng-change="ctrl.refresh()">URL</label> | ||
<span> (This service should respond with a text/plain response containing <a target="_blank" | ||
href="http://knsv.github.io/mermaid/">Mermaid syntax</a>.) | ||
</span> | ||
<input type="text" | ||
style="width: 95%" | ||
ng-model="ctrl.panel.mermaidServiceUrl" | ||
ng-change="ctrl.refresh()" | ||
ng-model-onblur/> | ||
<label> | ||
<input type="radio" | ||
ng-model="ctrl.panel.mode" | ||
ng-change="ctrl.refresh()" | ||
value="content">Content</label> | ||
<span> (This area uses <a target="_blank" | ||
href="http://knsv.github.io/mermaid/">Mermaid syntax</a>.) | ||
</span> | ||
<textarea class="gf-form-input" ng-model="ctrl.panel.content" rows="25" | ||
style="width: 95%" ng-change="ctrl.refresh()" ng-model-onblur></textarea> | ||
|
||
<label>Custom Styles</label> | ||
<textarea class="gf-form-input" ng-model="ctrl.panel.style" rows="10" | ||
<h5 class="section-heading">Diagram Definition</h5> | ||
|
||
|
||
<label><input type="radio" ng-model="ctrl.panel.mode" value="url" ng-change="ctrl.refresh()">URL</label> | ||
<span> (This service should respond with a text/plain response containing <a target="_blank" | ||
href="http://knsv.github.io/mermaid/">Mermaid syntax</a>.) | ||
</span> | ||
<input type="text" | ||
style="width: 95%" | ||
ng-model="ctrl.panel.mermaidServiceUrl" | ||
ng-change="ctrl.refresh()" | ||
ng-model-onblur/> | ||
<label>Api key</label> | ||
<input type="text" | ||
style="width: 95%" | ||
ng-model="ctrl.panel.mermaidServiceKey" | ||
ng-change="ctrl.refresh()" | ||
ng-model-onblur/> | ||
<label> | ||
<input type="radio" | ||
ng-model="ctrl.panel.mode" | ||
ng-change="ctrl.refresh()" | ||
value="content">Content</label> | ||
<span> (This area uses <a target="_blank" | ||
href="http://knsv.github.io/mermaid/">Mermaid syntax</a>.) | ||
</span> | ||
<textarea class="gf-form-input" ng-model="ctrl.panel.content" rows="25" | ||
style="width: 95%" ng-change="ctrl.refresh()" ng-model-onblur></textarea> | ||
|
||
<label>Custom Styles</label> | ||
<textarea class="gf-form-input" ng-model="ctrl.panel.style" rows="10" | ||
style="width: 95%" ng-change="ctrl.refresh()" ng-model-onblur></textarea> |
Oops, something went wrong.