The language attribute has been deprecated for quite some time with
the type attribute setting the type of embedded content. The type
attribute has further been defined to text/javascript as the default
value in the spec, so no attribute should be used for Javascript.
Per the standard: https://www.w3.org/TR/html5/scripting-1.html
<script src="/static/commitfest/js/jquery.js"></script>
<script src="/static/commitfest/js/jquery-ui.js"></script>
<script src="/static/commitfest/js/bootstrap.js"></script>
-<script type="text/javascript" src="/static/selectable/js/jquery.dj.selectable.js"></script>
+<script src="/static/selectable/js/jquery.dj.selectable.js"></script>
<script src="/static/commitfest/js/commitfest.js"></script>
{%block morescript%}{%endblock%}
</html>
{%endblock%}
{%block morescript%}
-<script language="javascript">
+<script>
{%if user.is_staff%}
function send_selected() {
var authors = [];
{%endblock%}
{%block morescript%}
-<script language="javascript">
+<script>
$(document).ready(function() {
$('button.close-nofloat').each(function(i,o) {
$(o).tooltip();