This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(query): updates query page to match search
- links views to search page - add summary tab - fixes search button - fixes gql to properly handle ajax autocomplete
- Loading branch information
Shane Wilson
committed
Mar 10, 2015
1 parent
96434f0
commit c5cdab2
Showing
9 changed files
with
217 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
<textarea | ||
class="form-control" | ||
style="border:none;box-shadow: none" | ||
data-ng-model="query" | ||
data-ng-change="onChange()" | ||
data-ng-keydown="keypress($event)" | ||
aria-label="Advanced Query" | ||
placeholder="Start Typing Your Query...." | ||
data-ng-trim="false" | ||
role="textbox"> | ||
class="form-control" | ||
data-ng-class="{'alert-danger': totalErrors.length, 'alert-success': gql}" | ||
style="border:none;box-shadow: none" | ||
data-ng-model="query" | ||
data-ng-model-options="{ debounce: 200 }" | ||
data-ng-change="onChange()" | ||
data-ng-keydown="keypress($event)" | ||
aria-label="Advanced Query" | ||
placeholder="Start Typing Your Query...." | ||
data-ng-trim="false" | ||
role="textbox"> | ||
</textarea> |
Oops, something went wrong.