diff options
| author | Mark Otto <[email protected]> | 2013-08-04 23:16:06 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-04 23:16:06 -0700 |
| commit | 222ea8cb71f8449d8ac93f1110bbd6896fd966d1 (patch) | |
| tree | a15fd015b7b11685757d8f34c3db3a7d52d3b617 /_includes/header.html | |
| parent | 6bebecfb287aa6aafce86a55dab6006e215f74fe (diff) | |
| parent | efc7514f9f9dc3da07fd8eb6f3b2308b5f0d130f (diff) | |
| download | bootstrap-222ea8cb71f8449d8ac93f1110bbd6896fd966d1.tar.xz bootstrap-222ea8cb71f8449d8ac93f1110bbd6896fd966d1.zip | |
Merge pull request #9081 from vsn4ik/rem_type_attr
Remove type attribute of tag "script".
Diffstat (limited to '_includes/header.html')
| -rw-r--r-- | _includes/header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/header.html b/_includes/header.html index b5eff5f5e..827b1c2c9 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -31,12 +31,12 @@ <link rel="apple-touch-icon-precomposed" href="{{ page.base_url }}assets/ico/apple-touch-icon-57-precomposed.png"> <link rel="shortcut icon" href="{{ page.base_url }}assets/ico/favicon.png"> -<script type="text/javascript"> +<script> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-146052-10']); _gaq.push(['_trackPageview']); (function() { - var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + var ga = document.createElement('script'); ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); |
