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

Review and integrate open95b into master #118

Merged
merged 30 commits into from
Sep 23, 2015
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
933927c
[Common UI] Reduce digest count
VWoeltjen Jun 29, 2015
2cbe686
[Frontend] IN-PROGRESS Refactoring to cleanup SASS file structure
charlesh88 Aug 31, 2015
bb1a02c
[Frontend] Significant re-factoring of CSS and markup
charlesh88 Sep 3, 2015
4997fc1
Merge branch 'mobile' of https://github.com/nasa/openmctweb into open95
charlesh88 Sep 3, 2015
62898c9
Merge branch 'open95' of https://github.com/nasa/openmctweb into open95
charlesh88 Sep 3, 2015
37c34c6
[Frontend] IN-PROGRESS Major restructuring of /platform/commonUI/ to …
charlesh88 Sep 3, 2015
ac41ed7
[Frontend] IN-PROGRESS Theme changes continuing
charlesh88 Sep 4, 2015
86deec6
[Frontend] IN-PROGRESS Theme changes continuing
charlesh88 Sep 5, 2015
4db48af
[Frontend] IN-PROGRESS Theme changes continuing
charlesh88 Sep 9, 2015
32b895b
[Frontend] IN-PROGRESS Theme changes continuing
charlesh88 Sep 9, 2015
3792dab
[Frontend] IN-PROGRESS Theme changes continuing
charlesh88 Sep 10, 2015
3b2454c
[Frontend] IN-PROGRESS Theming continues
charlesh88 Sep 10, 2015
d14c4e0
[Frontend] IN-PROGRESS Theming continues
charlesh88 Sep 10, 2015
a840b59
[Frontend] IN-PROGRESS Theming continues, sanding
charlesh88 Sep 10, 2015
3e5d46a
[Frontend] IN-PROGRESS Theme changes continuing
charlesh88 Sep 11, 2015
72c122e
Merge remote-tracking branch 'github/master' into open95b
VWoeltjen Sep 15, 2015
a3a6706
[Browse] Separate out back-arrow behavior
VWoeltjen Sep 15, 2015
4f5a111
[Frontend] Themes final on open prior to VISTA integration
charlesh88 Sep 16, 2015
acdd35c
[Forms] Fix select control
VWoeltjen Sep 16, 2015
f28d2f1
[Frontend/PLATFORM] Cherry picking from platform changes in vista65
charlesh88 Sep 16, 2015
9fdb9f0
[Frontend/PLATFORM] Cherry picking from platform changes in vista65
charlesh88 Sep 16, 2015
9a7f435
[Frontend] Minor color tweaks in Snow theme
charlesh88 Sep 17, 2015
c9b2f58
[Frontend] Minor tweaks to sizing of controls
charlesh88 Sep 21, 2015
54334a8
[Frontend] Setting default theme for open back to espresso
charlesh88 Sep 21, 2015
8611926
Merge remote-tracking branch 'github-open/open113' into open-master
Sep 22, 2015
2040304
Merge remote-tracking branch 'github-open/open19' into open-master
Sep 22, 2015
aba0969
Merge branch 'mobile-integration' into open-master
Sep 22, 2015
dbe1875
[Themes] Resolve conflicts
VWoeltjen Sep 22, 2015
fb0861f
[Config] Fixed image URLs in ImageTelemetry.js;
charlesh88 Sep 23, 2015
056b0c8
[Fixed Position] Use spaces instead of tabs
VWoeltjen Sep 23, 2015
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
Prev Previous commit
Next Next commit
[Forms] Fix select control
Use ng-show instead of ng-if to suppress the
'Select One' option after user has chosen something
in a select box; the latter appears to be incompatible
with Angular 1.4.x. #113
  • Loading branch information
VWoeltjen committed Sep 16, 2015
commit acdd35cf651fb0b384277a47327e946a8ab3b310
14 changes: 7 additions & 7 deletions platform/forms/res/templates/controls/select.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
at runtime from the About dialog for additional information.
-->
<div class='form-control select'>
<select
ng-model="ngModel[field]"
ng-options="opt.value as opt.name for opt in options"
ng-required="ngRequired"
name="mctControl">
<option value="" ng-if="!ngModel[field]">- Select One -</option>
</select>
<select
ng-model="ngModel[field]"
ng-options="opt.value as opt.name for opt in options"
ng-required="ngRequired"
name="mctControl">
<option value="" ng-show="!ngModel[field]">- Select One -</option>
</select>
</div>