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