Skip to content

Commit 037b498

Browse files
committed
Merge pull request #1083 from kingcody/feature/merge-h5bp-updates
feat(app): merge H5BP updates to index.html
2 parents 7ce366c + 4a88551 commit 037b498

File tree

5 files changed

+15
-19
lines changed

5 files changed

+15
-19
lines changed

Diff for: app/templates/client/app/app(css).css

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* App-wide Styles
3232
*/
3333

34-
.browsehappy {
34+
.browserupgrade {
3535
margin: 0.2em 0;
3636
background: #ccc;
3737
color: #000;

Diff for: app/templates/client/app/app(less).less

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* App-wide Styles
99
*/
1010

11-
.browsehappy {
11+
.browserupgrade {
1212
margin: 0.2em 0;
1313
background: #ccc;
1414
color: #000;

Diff for: app/templates/client/app/app(sass).scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $fa-font-path: "/bower_components/font-awesome/fonts";
88
* App-wide Styles
99
*/
1010

11-
.browsehappy {
11+
.browserupgrade {
1212
margin: 0.2em 0;
1313
background: #ccc;
1414
color: #000;

Diff for: app/templates/client/app/app(stylus).styl

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// App-wide Styles
3232
//
3333

34-
.browsehappy
34+
.browserupgrade
3535
background #ccc
3636
color #000
3737
margin 0.2em 0

Diff for: app/templates/client/index.html

+11-15
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
66
<head>
77
<meta charset="utf-8">
8-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta http-equiv="x-ua-compatible" content="ie=edge">
99
<base href="/">
1010
<title></title>
1111
<meta name="description" content="">
@@ -16,14 +16,14 @@
1616
<!-- endbower -->
1717
<!-- endbuild -->
1818
<!-- build:css({.tmp,client}) app/app.css -->
19-
<link rel="stylesheet" href="app/app.css">
19+
<link rel="stylesheet" href="app/app.css">
2020
<!-- injector:css -->
2121
<!-- endinjector -->
2222
<!-- endbuild -->
2323
</head>
2424
<body ng-app="<%= scriptAppName %>">
2525
<!--[if lt IE 7]>
26-
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
26+
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
2727
<![endif]-->
2828

2929
<!-- Add your site or application content here -->
@@ -34,7 +34,7 @@
3434
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3535
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
3636
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
37-
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
37+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
3838

3939
ga('create', 'UA-XXXXX-X');
4040
ga('send', 'pageview');
@@ -49,15 +49,11 @@
4949
<!-- endbower --><% if (filters.socketio) { %>
5050
<script src="socket.io-client/socket.io.js"></script><% } %>
5151
<!-- endbuild -->
52-
53-
<% if(filters.babel) { %>
54-
<!-- build:js(.tmp) app/app.js -->
55-
<% } else { %>
56-
<!-- build:js({.tmp,client}) app/app.js -->
57-
<% } %>
58-
<script src="app/app.js"></script>
59-
<!-- injector:js -->
60-
<!-- endinjector -->
61-
<!-- endbuild -->
62-
</body>
52+
<!-- build:js(<% if(filters.babel) { %>.tmp<% }
53+
else { %>{.tmp,client}<% } %>) app/app.js -->
54+
<script src="app/app.js"></script>
55+
<!-- injector:js -->
56+
<!-- endinjector -->
57+
<!-- endbuild -->
58+
</body>
6359
</html>

0 commit comments

Comments
 (0)