<html lang="en">
<head>
<meta charset="UTF-8">
<title>Angular ngModelOptions</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
</head>
<body ng-app="">
<label>İsim:
<input type="text"
ng-model="isim"
ng-model-options="{ debounce: 1000 }" />
</label>
<br />
<pre>isim 1 saniye içinde yazılacak = {{isim}}</pre>
</body>
</html>
This Pen doesn't use any external CSS resources.