Skip to content

Commit

Permalink
fixed some section 508 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
regulator95 committed May 29, 2015
1 parent 0467028 commit a12b5e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions software/cananolab-webapp/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
</head>
<body style="cursor: default" ng-app="angularApp" ng-controller="TemplateCtrl">
<div class="container">

<table cellspacing="0" cellpadding="0" summary="layout"
border="0">
<!-- nci hdr begins -->
Expand All @@ -35,6 +34,8 @@
<tbody>
<tr>
<th scope="row" align="left">
<!-- anchor to skip main menu -->
<a href="#content" style="background-color:#A90101"><img height="1" alt="Skip Menu" src="images/shim.gif" width="1" border="0"></a>
<a href="http://www.cancer.gov/"><img alt="National Cancer Institute" src="images/nci.jpg" border="0" height="37" width="283"></a>
</th>
<td>
Expand All @@ -54,10 +55,10 @@
<tbody>
<tr>
<td class="subhdrBG" align="left">
<a href="/caNanoLab/#/" class="link"></a>
<a href="/caNanoLab/#/" class="link" alt="caNanoLab" title="caNanoLab" description="caNanoLab"></a>
</td>
<td id="keywordSearch">
<input type="text" ng-disabled="isSearching" ng-init="keyword_search_text=''" ng-model="keyword_search_text" name="keyword_search_text">&nbsp;<button class="btn btn-success btn-xs keyword_search" ng-click="doKeywordSearch()" ng-disabled="isSearching">Search</button>
<label for="keywordsearch" style="color:white;">Search</label><input type="text" ng-disabled="isSearching" ng-init="keyword_search_text=''" ng-model="keyword_search_text" id="keywordsearch" name="keyword_search_text">&nbsp;<button class="btn btn-success btn-xs keyword_search" ng-click="doKeywordSearch()" ng-disabled="isSearching">Search</button>
<div ng-show="isSearching" id="searching">Searching</div>
</td>
</tr>
Expand All @@ -78,8 +79,7 @@
<tbody>
<tr>
<td width="1">
<!-- anchor to skip main menu -->
<a href="#content"><img height="1" alt="Skip Menu" src="images/shim.gif" width="1" border="0"></a>

</td>
<th ng-repeat-start="t in tabs.tabs" scope="row" ng-class="{mainMenuItem: t[0]!='HOME', 'mainMenuItem home':t[0]=='HOME'}">
<a ng-if="t[0]=='GLOSSARY'||t[0]=='HELP'" ng-class="{mainMenuLink: t[0]!='HOME', 'mainMenuLink home':t[0]=='HOME'}" href="{{t[1]}}" target="_blank">{{t[0]}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<label for="publicationCategory">Publication Type</label>
</td>
<td colspan="2">
<select ng-disabled="loader" ng-model="searchPublicationForm.category" name="category" ng-change="displayPubMed()"><option ng-repeat="category in data.publicationCategories" value="{{category}}">{{category}}</option>
<select id="publicationCategory" ng-disabled="loader" ng-model="searchPublicationForm.category" name="category" ng-change="displayPubMed()"><option ng-repeat="category in data.publicationCategories" value="{{category}}">{{category}}</option>
</select>
</td>
</tr>
Expand Down

0 comments on commit a12b5e9

Please sign in to comment.