Fix remaining JSHint issues

This commit is contained in:
Tom Hughes 2015-02-24 19:45:10 +00:00
parent 1dae6a712e
commit e0706f06b1

View file

@ -24,7 +24,7 @@ var querystring = require('querystring-component');
* Called as the user scrolls/zooms around to maniplate hrefs of the * Called as the user scrolls/zooms around to maniplate hrefs of the
* view tab and various other links * view tab and various other links
*/ */
function updateLinks(loc, zoom, layers, object) { window.updateLinks = function (loc, zoom, layers, object) {
$(".geolink").each(function(index, link) { $(".geolink").each(function(index, link) {
var href = link.href.split(/[?#]/)[0], var href = link.href.split(/[?#]/)[0],
args = querystring.parse(link.search.substring(1)), args = querystring.parse(link.search.substring(1)),
@ -65,15 +65,15 @@ function updateLinks(loc, zoom, layers, object) {
.toggleClass('disabled', editDisabled) .toggleClass('disabled', editDisabled)
.attr('data-original-title', editDisabled ? .attr('data-original-title', editDisabled ?
I18n.t('javascripts.site.edit_disabled_tooltip') : ''); I18n.t('javascripts.site.edit_disabled_tooltip') : '');
} };
function maximiseMap() { window.maximiseMap = function () {
$("#content").addClass("maximised"); $("#content").addClass("maximised");
} };
function minimiseMap() { window.minimiseMap = function () {
$("#content").removeClass("maximised"); $("#content").removeClass("maximised");
} };
$(document).ready(function () { $(document).ready(function () {
$("#menu-icon").on("click", function(e) { $("#menu-icon").on("click", function(e) {