Left file: appwork-v1_1_0/angular-starter/src/index.html  
Right file: appwork-v1_2_0/angular-starter/src/index.html  
1 <!DOCTYPE html> = 1 <!DOCTYPE html>
2     2  
3 <html lang="en" class="default-style">   3 <html lang="en" class="default-style">
4   <head>   4   <head>
5     <base href="/">   5     <base href="/">
6     <title>Angular Starter</title>   6     <title>Angular Starter</title>
7     7  
8     <meta charset="utf-8">   8     <meta charset="utf-8">
9     <meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1">   9     <meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1">
10     <meta name="description" content="">   10     <meta name="description" content="">
11     <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">   11     <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
12     <link rel="icon" type="image/x-icon" href="favicon.ico">   12     <link rel="icon" type="image/x-icon" href="favicon.ico">
13     13  
14     <!-- Main font -->   14     <!-- Main font -->
15     <link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900" rel="stylesheet">   15     <link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900" rel="stylesheet">
16     16  
17     <!-- Icons. Uncomment required icon fonts -->   17     <!-- Icons. Uncomment required icon fonts -->
18     <!-- <link rel="stylesheet" href="assets/vendor/fonts/fontawesome.css"> -->   18     <!-- <link rel="stylesheet" href="assets/vendor/fonts/fontawesome.css"> -->
19     <link rel="stylesheet" href="assets/vendor/fonts/ionicons.css">   19     <link rel="stylesheet" href="assets/vendor/fonts/ionicons.css">
20     <!-- <link rel="stylesheet" href="assets/vendor/fonts/linearicons.css"> -->   20     <!-- <link rel="stylesheet" href="assets/vendor/fonts/linearicons.css"> -->
21     <!-- <link rel="stylesheet" href="assets/vendor/fonts/open-iconic.css"> -->   21     <!-- <link rel="stylesheet" href="assets/vendor/fonts/open-iconic.css"> -->
22     <!-- <link rel="stylesheet" href="assets/vendor/fonts/pe-icon-7-stroke.css"> -->   22     <!-- <link rel="stylesheet" href="assets/vendor/fonts/pe-icon-7-stroke.css"> -->
23     23  
24     <!-- Layout helpers -->   24     <!-- Layout helpers -->
25     <script src="assets/vendor/js/layout-helpers.js"></script>   25     <script src="assets/vendor/js/layout-helpers.js"></script>
26     26  
27   </head>   27   </head>
28   <body>   28   <body>
29     29  
30     <!-- App root -->   30     <!-- App root -->
31     <app-root></app-root>   31     <app-root></app-root>
32     <!-- / App root -->   32     <!-- / App root -->
33     33  
34     <!-- IE11 fix --> +-    
35     <script>      
36     if (!!window.MSInputMethodContext && !!document.documentMode || document.documentMode <= 11) {      
37       window.MouseEvent.prototype = Event.prototype;      
38        
39       window.MouseEvent = function (eventType, params) {      
40         params = params || { bubbles: false, cancelable: false };      
41         var mouseEvent = document.createEvent('MouseEvent');      
42         mouseEvent.initMouseEvent(eventType, params.bubbles, params.cancelable, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);      
43        
44         return mouseEvent;      
45       }      
46     }      
47     </script>      
48   </body> = 34   </body>
49 </html>   35 </html>