Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#6371 get rid of the OK button #6487

Merged
merged 17 commits into from
Jan 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions beakerx/beakerx/static/html/settings_tab.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
#beakerx_info .beakerx_site_link img {
height: 35px;
}

#sync_indicator .saving {
color: #f0ad4e;
}

#sync_indicator .saved {
color: #5cb85c;
}
</style>
<div id="beakerx_env_toolbar" class="list_toolbar row">
<div class="col-xs-12 no-padding">
Expand Down Expand Up @@ -73,8 +81,11 @@
<div class="col-xs-8">
<div class="pull-right">
<label for="add_option_jvm_sett">add option: </label>
<button type="button" id="add_option_jvm_sett" title="" class="btn btn-default btn-xs"
data-original-title="add new"><i class="fa fa-plus"></i></button>
<button type="button"
id="add_option_jvm_sett"
class="btn btn-default btn-xs"
data-original-title="add new">
<i class="fa fa-plus"></i>
</button>
</div>
</div>
Expand All @@ -83,10 +94,12 @@
</div>
</fieldset>
<div class="form-group text-primary">
<span>Result: java </span><span id="result"></span>
<span id="sync_indicator">
<span class="saving hidden"><i class="fa fa-spinner"></i></span>
<span class="saved hidden"><i class="fa fa-check"></i></span>
</span><span>Result: java </span><span id="result"></span>
</div>
<div id="errors" style="color: red"></div>
<button type="button" id="jvm_settings_submit" class="btn btn-primary">OK</button>
</form>
</div>
</div>
Loading