Skip to content

Commit

Permalink
fix(library) reduce features
Browse files Browse the repository at this point in the history
Features that enabled have been reduced so we can test a smaller set
better
  • Loading branch information
atruskie committed May 25, 2014
1 parent 6102358 commit 8cef4f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/app/annotationLibrary/annotationLibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ baw.annotationLibrary.addCalculatedProperties = function addCalculatedProperties

//console.log(audioEvent);

// TODO: remove hard coded paths and query strings, yuck!
audioEvent.urls = {
site: '/projects/' + audioEvent.projects[0].id +
'/sites/' + audioEvent.siteId,
Expand Down
10 changes: 6 additions & 4 deletions src/app/annotationLibrary/annotationLibrary.tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ <h3>Annotation Library</h3>

<p class="help-block text-muted col-sm-3">Use comma (,) to separate tags.</p>

<label for="refLibraryAudioRecordingId" class="col-sm-1 control-label">Recording Id</label>
<!-- Blocks disabled for simplicity in testing -->
<label style="display: none" for="refLibraryAudioRecordingId" class="col-sm-1 control-label">Recording Id</label>

<div class="col-sm-2">
<input type="number" class="form-control" id="refLibraryAudioRecordingId"
<div style="display: none" class="col-sm-2">
<input type="text" class="form-control" id="refLibraryAudioRecordingId"
placeholder="Audio Recording Id" step="1" min="1"
data-ng-model="filterSettings.audioRecordingId">
</div>
Expand Down Expand Up @@ -46,7 +47,8 @@ <h3>Annotation Library</h3>
placeholder="Maximum Frequency" data-ng-model="filterSettings.freqMax">
</div>
</div>
<div class="form-group">
<!-- Block disabled for simplicity in testing -->
<div style="display: none" class="form-group">
<label for="refLibraryReference1" class="col-sm-1 control-label">Annotations</label>

<div class="col-sm-4">
Expand Down

0 comments on commit 8cef4f7

Please sign in to comment.