Simple landing page for my website

now.js 521B

123456789101112131415161718192021
  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('NowCtrl', ['$window', function ($window) {
  11. var lang = $window.navigator.language || $window.navigator.userLanguage;
  12. console.log(lang);
  13. if (lang === 'pt-BR') {
  14. console.log("language is portuguese");
  15. } else {
  16. console.log("language is english");
  17. }
  18. console.log("Showing page NOW");
  19. }]);