[Search] Clear icon working

Clicking on the clear icon now clears
the input text in the search bar.
This commit is contained in:
slhale
2015-08-12 12:46:01 -07:00
parent a76e54483a
commit dd993c81a7
4 changed files with 154 additions and 124 deletions

View File

@@ -24,23 +24,28 @@
<!-- Search bar -->
<div class="search-bar">
<!-- Input field -->
<input class="search-input"
type="text"
ng-model="ngModel.input"
ng-keyup="controller.search()"
id="searchInput" />
<!-- Search icon -->
<!-- ui symbols for search are 'd' and 'M' -->
<div class="ui-symbol search-icon"
ng-class="{content: controller.hasInput()}">
M
</div>
<!-- Clear button/icon 'x' -->
<!-- Clear icon/button 'x' -->
<a class="ui-symbol clear-icon"
ng-class="{content: controller.hasInput()}">
ng-class="{content: controller.hasInput()}"
ng-click="controller.clear()">
x
</a>
</div>
<!-- This div exists to determine scroll bar location -->
@@ -72,4 +77,5 @@
</div>
</div>
</div>

View File

@@ -118,6 +118,14 @@ define(function () {
*/
hasInput: function () {
return !($scope.ngModel.input === "" || $scope.ngModel.input === undefined);
},
/**
* Clears the input text.
*/
clear: function () {
$scope.ngModel.input = '';
$scope.ngModel.search = false;
}
};
}