Easy Modal Simple

Easy alert, confirm and modal

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<body ng-app = "easyModalApp" class="container">
<div ng-controller="easyAlertController">
    <p><h3>Easy Alert Examples:</h3>
    <button class="btn btn-info" ng-click="showModal1()" type="button">Simple Alert</button>

JavaScript

var easyModalApp = angular.module("easyModalApp", ['emodalService']);

    easyModalApp.controller("easyAlertController",['$scope','emodal',function ($scope, emodal) {
        $scope.showModal1 = function(){emodal.alert("Messages go here!");};
        $scope.showModal2 = function(){emodal.alert("<strong>Disappear in 2 seconds</strong>",
                                                      {okLabel:'New Label',okClass:'btn btn-success',fadein:2000}
                                                     );
        };
    }]);