-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from NLeSC/jsonSelection
fixed text search label, fixed perspectives not showing in breadcrumb…
- Loading branch information
Showing
23 changed files
with
264 additions
and
541 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<b>Actors</b> | ||
<div id="rowchart_allActors"></div> | ||
<div id="actors"></div> |
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,2 +1,2 @@ | ||
<b>Authors</b> | ||
<div id="rowchart_allAuthors"></div> | ||
<div id="authors"></div> |
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,2 +1,2 @@ | ||
<b>Cited</b> | ||
<div id="rowchart_allCitations"></div> | ||
<div id="citations"></div> |
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 +1 @@ | ||
<div id="rowchart_allSources"></div> | ||
<div id="sources"></div> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
10 changes: 6 additions & 4 deletions
10
app/scripts/fullTextCrossfilterSearch/fullTextCrossfilterSearch.directive.html
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,4 +1,6 @@ | ||
<div class="mdl-textfield mdl-js-textfield" id="fullltextSearch_{{fTCSCtrl.ndxServiceName}}"> | ||
<input class="mdl-textfield__input" type="text" id="freeSearch" ng-model="fTCSCtrl.input" ng-change="fTCSCtrl.applyFilter()" ng-model-options="{debounce: 1000}"> | ||
<label class="mdl-textfield__label" for="freeSearch">Search for keywords...</label> | ||
</div> | ||
<form action='#'> | ||
<div class="mdl-textfield mdl-js-textfield" id="fullltextSearch_{{fTCSCtrl.ndxServiceName}}"> | ||
<input class="mdl-textfield__input" type="text" id="freeSearch" ng-model="fTCSCtrl.input" ng-change="fTCSCtrl.applyFilter()" ng-model-options="{debounce: 100}"> | ||
<label class="mdl-textfield__label" for="freeSearch" ng-show="!fTCSCtrl.input">Search for keywords...</label> | ||
</div> | ||
</form> |
Oops, something went wrong.