html'deki arama alanı
<input type="text" id="filter" placeholder="Arama yapınız..." ng-model="ctrl.filter" class="form-control" />script.js içi
var app = angular.module("app",[]);
app.controller('AppController', function($scope){
this.filter = "";
this.contacts = [
{name: 'İlker DENİZCİ', email: 'Personel', telefon: '03220001000', dahili: '1201'},
{name: 'Ceylin İŞLEYEN', email: 'Personel', telefon: '03220001000', dahili: '1210'},
{name: 'Mithat AKTÜRK', email: 'Personel', telefon: '03220001000', dahili: '1209'},
];
this.add = function(contact){
var newContact = {};
newContact.name = contact.name;
newContact.email = contact.email;
this.contacts.push(newContact);
$scope.newContact = null;
}
});