angularjs - disable instant updating

Angularjs has instant updating by default, how to disable it?

by Freewind

HTML

<html ng-app="MyApp">
    <body>
    <div ng-controller='MyCtrl'>
        <input type="text" ng-model="name" />
        <hr/>
        Hello, {{name}}!
    </div>
    </body>
</html>

CSS

</style>
<script src="http://code.angularjs.org/angular-1.0.0rc10.min.js"></script>
<style>

JavaScript

var app = angular.module('MyApp', []);

app.controller('MyCtrl', ['$scope', function($scope) {

}]);