scratch – Diff between revs 121 and 125
?pathlinks?
Rev 121 | Rev 125 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | <!DOCTYPE html> |
1 | <!DOCTYPE html> |
|
2 | <html lang="en"> |
2 | <html lang="en" ng-app="scratch"> |
|
3 | <head> |
3 | <head> |
|
4 | <meta charset="utf-8"> |
4 | <meta charset="utf-8"> |
|
5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
6 | <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> |
6 | <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> |
|
7 | <meta http-equiv="Pragma" content="no-cache" /> |
7 | <meta http-equiv="Pragma" content="no-cache" /> |
|
Line 24... | Line 24... | |||
24 | <!-- Site-wide style CCS --> |
24 | <!-- Site-wide style CCS --> |
|
25 | <link href="css/style.css" rel="stylesheet"> |
25 | <link href="css/style.css" rel="stylesheet"> |
|
Line 26... | Line 26... | |||
26 | |
26 | |
|
27 | <!-- Local style --> |
27 | <!-- Local style --> |
|
- | 28 | <link href="css/text/style.css" rel="stylesheet"> |
||
- | 29 | |
||
- | 30 | <!-- Scratch Angular Includes --> |
||
28 | <link href="css/text/style.css" rel="stylesheet"> |
31 | <ng-include src="'html/scratch-head-last.html'"></ng-include> |
|
Line 29... | Line 32... | |||
29 | </head> |
32 | </head> |
|
- | 33 | |
||
- | 34 | <body> |
||
- | 35 | |
||
Line 30... | Line 36... | |||
30 | |
36 | <!-- Scratch Angular Includes --> |
|
31 | <body> |
37 | <ng-include src="'html/scratch-body-first.html'"></ng-include> |
|
32 | |
38 | |
|
33 | <!-- Main component for a primary marketing message or call to action --> |
39 | <!-- Main component for a primary marketing message or call to action --> |
|
Line 98... | Line 104... | |||
98 | </div> |
104 | </div> |
|
99 | </div> |
105 | </div> |
|
Line 100... | Line 106... | |||
100 | |
106 | |
|
101 | <!-- jQuery --> |
107 | <!-- jQuery --> |
|
- | 108 | <script src="bower_components/jquery/dist/jquery.min.js"></script> |
||
- | 109 | <!-- Angular JS --> |
||
102 | <script src="bower_components/jquery/dist/jquery.min.js"></script> |
110 | <script src="bower_components/angular/angular.min.js"></script> |
|
103 | <!-- BootStrap --> |
111 | <!-- BootStrap --> |
|
104 | <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> |
112 | <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> |
|
105 | <!-- Velocity --> |
113 | <!-- Velocity --> |
|
Line 113... | Line 121... | |||
113 | <script src="bower_components/fingerprintjs2/dist/fingerprint2.min.js"></script> |
121 | <script src="bower_components/fingerprintjs2/dist/fingerprint2.min.js"></script> |
|
114 | <!-- js-cookie --> |
122 | <!-- js-cookie --> |
|
115 | <script src="bower_components/js-cookie/src/js.cookie.js"></script> |
123 | <script src="bower_components/js-cookie/src/js.cookie.js"></script> |
|
116 | <!-- Bootstrap Validator --> |
124 | <!-- Bootstrap Validator --> |
|
117 | <script src="bower_components/bootstrap-validator/dist/validator.min.js"></script> |
125 | <script src="bower_components/bootstrap-validator/dist/validator.min.js"></script> |
|
- | 126 | <!-- Angular Initialization. --> |
||
- | 127 | <script> |
||
- | 128 | var app = angular.module('scratch', []); |
||
- | 129 | </script> |
||
118 | <script> |
130 | <script> |
|
119 | $(document).ready(() => { |
131 | $(document).ready(() => { |
|
120 | // Attach the form validator. |
132 | // Attach the form validator. |
|
121 | $('#nick-form').validator({ |
133 | $('#nick-form').validator({ |
|
122 | focus: false |
134 | focus: false |