message.html
894 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title></title>
<link href="https://cdn.staticfile.org/antd/3.26.9/antd.css" rel="stylesheet" />
<style>
div.row {
margin-bottom: 16px;
}
</style>
</head>
<body>
<div ng-app="esNgAntd" ng-controller="mainCtrl">
<div class="container" style="padding: 50px">
<button ng-click="handleClick()">Click Me</button>
</div>
</div>
</div>
<script src="https://cdn.staticfile.org/angular.js/1.2.28/angular.min.js"></script>
<script src="../dist/ng-antd.js"></script>
<script>
angular
.module("esNgAntd")
.controller("mainCtrl", function ($scope, message) {
$scope.handleClick = function () {
message.info("12312");
}
});
</script>
</body>
</html>