Simple landing page for my website

main.js 485B

1234567891011121314151617181920
  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', 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. }]);