Created
April 28, 2014 17:09
-
-
Save chrisgilmerproj/11378074 to your computer and use it in GitHub Desktop.
Angularjs UI modal question
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
<div class="input-group"> | |
<input type="text" class="form-control" placeholder="Search" ng-model='query'> | |
<span class="input-group-btn"> | |
<button type="button" class="btn btn-info" ng-click="search()">Search</button> | |
</span> | |
</div> | |
$scope.search = function () { | |
console.log($scope.query); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment