(function () {

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

	MWL.controller('MWLcontroller', ['$scope', '$state', '$timeout', '$modal',
		function ($resource, $scope, $modal, $state) {

			//   $scope.today = function() {
			//     	$scope.dt = new Date();
			//   };

			// 	$scope.today();

			// $scope.clear = function () {
			//   	$scope.dt = null;
			// 	};

			// Disable weekend selection



		}]);

})();