Simple landing page for my website

main.js 292B

1234567891011121314
  1. 'use strict';
  2. /**
  3. * @ngdoc function
  4. * @name landingPageApp.controller:MainCtrl
  5. * @description
  6. * # MainCtrl
  7. * Controller of the landingPageApp
  8. */
  9. angular.module('landingPageApp')
  10. .controller('MainCtrl', ['$window', '$scope', '$timeout', function ($window, $scope, $timeout) {
  11. }]);