mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Change label to 'Run on selection change'
This commit is contained in:
parent
507571199f
commit
8a0ca30fd7
1 changed files with 5 additions and 4 deletions
|
|
@ -93,10 +93,11 @@ limitations under the License.
|
|||
ng-if="paragraph.settings.forms[$root.keys(paragraph.settings.forms)].options &&
|
||||
paragraph.settings.forms[$root.keys(paragraph.settings.forms)].type != 'checkbox'">
|
||||
<span ng-if="isAutoRunTrue == true" class="fa fa-toggle-on shortcut-icon" style="padding:3px 8px 8px 20px"></span>
|
||||
<span ng-if="isAutoRunTrue == false" class="fa fa-toggle-off shortcut-icon" style="padding:3px 8px 8px 20px"></span>Auto Run
|
||||
<span ng-if="isAutoRunTrue == false" class="fa fa-toggle-off shortcut-icon" style="padding:3px 8px 8px 20px"></span>Run on selection change
|
||||
<form style="display:inline; float:right">
|
||||
<input type="checkbox"
|
||||
style="width:16px; margin-right:20px"
|
||||
tooltip-placement="top" tooltip="Even if you uncheck this, still can run the paragraph by pressing Enter"
|
||||
ng-model="isAutoRunTrue"
|
||||
ng-change="turnOnAutoRun()"/>
|
||||
</form>
|
||||
|
|
@ -112,15 +113,15 @@ limitations under the License.
|
|||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a ng-click="moveUp(paragraph)" ng-hide="$first"><span class="icon-arrow-up shortcut-icon"></span>Move Up
|
||||
<a ng-click="moveUp(paragraph)" ng-hide="$first"><span class="icon-arrow-up shortcut-icon"></span>Move up
|
||||
<span class="shortcut-keys">Ctrl+{{ isMac ? 'Option' : 'Alt'}}+k</span></a>
|
||||
</li>
|
||||
<li>
|
||||
<a ng-click="moveDown(paragraph)" ng-hide="$last"><span class="icon-arrow-down shortcut-icon"></span>Move Down
|
||||
<a ng-click="moveDown(paragraph)" ng-hide="$last"><span class="icon-arrow-down shortcut-icon"></span>Move down
|
||||
<span class="shortcut-keys">Ctrl+{{ isMac ? 'Option' : 'Alt'}}+j</span></a>
|
||||
</li>
|
||||
<li>
|
||||
<a ng-click="insertNew('below')"><span class="icon-plus shortcut-icon"></span>Insert New
|
||||
<a ng-click="insertNew('below')"><span class="icon-plus shortcut-icon"></span>Insert new
|
||||
<span class="shortcut-keys">Ctrl+{{ isMac ? 'Option' : 'Alt'}}+b</span></a>
|
||||
</li>
|
||||
<li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue