UNPKG

angularjs-datepicker

Version:
22 lines (17 loc) 527 B
/*global angular window*/ (function (angular) { 'use strict'; var app = angular.module('720kb', [ 'ngRoute', '720kb.datepicker' ]) .controller('TestController', ['$scope', '$interval', function TestController($scope, $interval) { var that = this; that.visibility = true; $interval(function setInterval() { //toggle manually everytime that.visibility = !that.visibility; window.console.info('Toggling datepicker with interval of 3.5 seconds'); }, 3500); }]); }(angular));