diff options
| author | vsn4ik <[email protected]> | 2013-08-05 05:40:25 +0400 |
|---|---|---|
| committer | vsn4ik <[email protected]> | 2013-08-05 05:40:25 +0400 |
| commit | efc7514f9f9dc3da07fd8eb6f3b2308b5f0d130f (patch) | |
| tree | 2a6d42e8a3f83f563396f1eb3584e0cc4da480a3 /_includes/footer.html | |
| parent | 2b6ec389876fac116ae2a152e47be321632dd9ba (diff) | |
| download | bootstrap-efc7514f9f9dc3da07fd8eb6f3b2308b5f0d130f.tar.xz bootstrap-efc7514f9f9dc3da07fd8eb6f3b2308b5f0d130f.zip | |
Remove type attribute of tag "script".
In HTML5 in tag script, the type attribute is no longer required. The default value is "text/javascript".
http://www.w3.org/TR/html5/scripting-1.html#attr-script-type
Diffstat (limited to '_includes/footer.html')
| -rw-r--r-- | _includes/footer.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 47a671b26..83ff87e26 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -4,7 +4,7 @@ <script src="{{ page.base_url }}assets/js/jquery.js"></script> <script src="{{ page.base_url }}dist/js/bootstrap.js"></script> -<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> +<script src="http://platform.twitter.com/widgets.js"></script> <script src="{{ page.base_url }}assets/js/holder.js"></script> <script src="{{ page.base_url }}assets/js/application.js"></script> @@ -15,7 +15,6 @@ var _gauges = _gauges || []; (function() { var t = document.createElement('script'); - t.type = 'text/javascript'; t.async = true; t.id = 'gauges-tracker'; t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013'); |
