scratch – Diff between revs 121 and 125

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
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/draw/style.css" rel="stylesheet">
-   29
-   30 <!-- Scratch Angular Includes -->
28 <link href="css/draw/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 84... Line 90...
84 </div> 90 </div>
85 </div> 91 </div>
Line 86... Line 92...
86   92  
87 <!-- jQuery --> 93 <!-- jQuery -->
-   94 <script src="bower_components/jquery/dist/jquery.min.js"></script>
-   95 <!-- Angular JS -->
88 <script src="bower_components/jquery/dist/jquery.min.js"></script> 96 <script src="bower_components/angular/angular.min.js"></script>
89 <!-- BootStrap --> 97 <!-- BootStrap -->
Line 90... Line 98...
90 <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> 98 <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
91 99
92 <!-- DrawingBoard --> 100 <!-- DrawingBoard -->
93 <script src="bower_components/drawingboard.js/dist/drawingboard.min.js"></script> 101 <script src="bower_components/drawingboard.js/dist/drawingboard.min.js"></script>
Line 94... Line 102...
94 <!-- Clipboard --> 102 <!-- Clipboard -->
95 <script src="bower_components/clipboard/dist/clipboard.min.js"></script> 103 <script src="bower_components/clipboard/dist/clipboard.min.js"></script>
-   104
-   105 <!-- Local javascript -->
-   106 <script src="js/Base64ToBlob.js"></script>
-   107 <!-- Angular Initialization. -->
96 108 <script>
97 <!-- Local javascript --> 109 var app = angular.module('scratch', []);
98 <script src="js/Base64ToBlob.js"></script> 110 </script>
99 <script> 111 <script>
100 $(document).ready(() => { 112 $(document).ready(() => {