Prepare to use JSHint. re #96

This commit is contained in:
Sébastien Lucas 2013-10-14 10:04:16 +02:00
parent bbdf4a432e
commit a8e63d1a8a
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,8 @@
// copyright Sébastien Lucas
// https://github.com/seblucas/cops
/*global LRUCache */
var templatePage, templateBookDetail, templateMain, templateSuggestion, currentData, before, filterList;
if (typeof LRUCache!='undefined') {
@ -19,6 +21,7 @@ function debug_log(text) {
}
}
/*exported updateCookie */
function updateCookie (id) {
if($(id).prop('pattern') && !$(id).val().match(new RegExp ($(id).prop('pattern')))) {
return;
@ -28,6 +31,7 @@ function updateCookie (id) {
$.cookie(name, value, { expires: 365 });
}
/*exported updateCookieFromCheckbox */
function updateCookieFromCheckbox (id) {
var name = $(id).attr('id');
if ((/^style/).test (name)) {
@ -57,6 +61,7 @@ function retourMail(data, textStatus, jqXHR ) {
alert (data);
}
/*exported sendToMailAddress */
function sendToMailAddress (component, dataid) {
var email = $.cookie ('email');
if (!$.cookie ('email')) {
@ -94,6 +99,7 @@ function getCurrentOption (option) {
return $.cookie (option);
}
/*exported htmlspecialchars */
function htmlspecialchars(str) {
return String(str)
.replace(/&/g, '&')
@ -268,6 +274,7 @@ function updatePage (data) {
}
}
/*exported handleLinks */
function handleLinks () {
$("body").on ("click", "a[href^='index']", link_Clicked);
$("body").on ("submit", "#searchForm", search_Submitted);