Skip to content

Commit

Permalink
v1.0.5: Added Google Analytics. Resolves #14
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-mckeown committed Nov 2, 2023
1 parent da55ad6 commit 13b4b07
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>flightdash.io</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RKZ370CHNJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-RKZ370CHNJ');
</script>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var app = angular.module('checklistApp', []);

app.controller('ChecklistController', ['$scope', '$sce', '$timeout', '$http', '$document', '$interval', function($scope, $sce, $timeout, $http, $document, $interval) {

$scope.versionNumber = '1.0.4 Beta';
$scope.versionNumber = '1.0.5 Beta';
$scope.state = 'Idle';
$scope.messages = [];
$scope.selectedChecklist = '';
Expand Down

0 comments on commit 13b4b07

Please sign in to comment.