mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 20:56:09 +03:00
Add eslint and hound
This commit is contained in:
parent
537c3d04c1
commit
de25b68b43
285
.eslintrc.hound.json
Normal file
285
.eslintrc.hound.json
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
{
|
||||||
|
"env": {
|
||||||
|
"browser": true
|
||||||
|
},
|
||||||
|
"extends": "eslint:recommended",
|
||||||
|
"rules": {
|
||||||
|
"indent": [
|
||||||
|
"error",
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"linebreak-style": [
|
||||||
|
"error",
|
||||||
|
"unix"
|
||||||
|
],
|
||||||
|
"quotes": [
|
||||||
|
"error",
|
||||||
|
"double"
|
||||||
|
],
|
||||||
|
"semi": [
|
||||||
|
"error",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"no-unused-vars": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"args": "none"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"block-scoped-var": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"consistent-return": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"curly": [
|
||||||
|
"error",
|
||||||
|
"all"
|
||||||
|
],
|
||||||
|
"eqeqeq": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-eval": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-implicit-globals": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-implied-eval": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-invalid-this": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-multi-spaces": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"exceptions": {
|
||||||
|
"Property": true,
|
||||||
|
"VariableDeclarator": true,
|
||||||
|
"AssignmentExpression": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-new-wrappers": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-new": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-return-assign": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-self-compare": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-unmodified-loop-condition": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-unused-expressions": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-call": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-concat": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-escape": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-return": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-with": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"radix": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"yoda": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-undef-init": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-use-before-define": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"functions": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"array-bracket-spacing": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"block-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"brace-style": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"camelcase": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"comma-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"comma-style": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"computed-property-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"consistent-this": [
|
||||||
|
"error",
|
||||||
|
"self"
|
||||||
|
],
|
||||||
|
"eol-last": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"func-call-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"func-name-matching": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"key-spacing": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"mode": "minimum"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"keyword-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"max-len": [
|
||||||
|
"error",
|
||||||
|
80
|
||||||
|
],
|
||||||
|
"max-statements-per-line": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"max": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"new-cap": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"new-parens": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-array-constructor": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-mixed-operators": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"groups": [
|
||||||
|
[
|
||||||
|
"&",
|
||||||
|
"|",
|
||||||
|
"^",
|
||||||
|
"~",
|
||||||
|
"<<",
|
||||||
|
">>",
|
||||||
|
">>>"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"==",
|
||||||
|
"!=",
|
||||||
|
"===",
|
||||||
|
"!==",
|
||||||
|
">",
|
||||||
|
">=",
|
||||||
|
"<",
|
||||||
|
"<="
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"&&",
|
||||||
|
"||"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"in",
|
||||||
|
"instanceof"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-new-object": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-tabs": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-trailing-spaces": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-unneeded-ternary": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-whitespace-before-property": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"object-curly-spacing": [
|
||||||
|
"error",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"one-var-declaration-per-line": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"one-var": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"operator-assignment": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"operator-linebreak": [
|
||||||
|
"error",
|
||||||
|
"after"
|
||||||
|
],
|
||||||
|
"quote-props": [
|
||||||
|
"error",
|
||||||
|
"as-needed"
|
||||||
|
],
|
||||||
|
"semi-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"space-before-blocks": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"space-before-function-paren": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"space-in-parens": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"space-infix-ops": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"space-unary-ops": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"words": false,
|
||||||
|
"nonwords": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"unicode-bom": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-caller": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-loop-func": [
|
||||||
|
"error"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"globals": {
|
||||||
|
"OpenSeadragon": true,
|
||||||
|
"define": false,
|
||||||
|
"module": false
|
||||||
|
}
|
||||||
|
}
|
285
.eslintrc.json
Normal file
285
.eslintrc.json
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
{
|
||||||
|
"env": {
|
||||||
|
"browser": true
|
||||||
|
},
|
||||||
|
"extends": "eslint:recommended",
|
||||||
|
"rules": {
|
||||||
|
"indent": [
|
||||||
|
"off",
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"linebreak-style": [
|
||||||
|
"error",
|
||||||
|
"unix"
|
||||||
|
],
|
||||||
|
"quotes": [
|
||||||
|
"off",
|
||||||
|
"double"
|
||||||
|
],
|
||||||
|
"semi": [
|
||||||
|
"error",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"no-unused-vars": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"args": "none"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"block-scoped-var": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"consistent-return": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"curly": [
|
||||||
|
"error",
|
||||||
|
"all"
|
||||||
|
],
|
||||||
|
"eqeqeq": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"no-eval": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-implicit-globals": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-implied-eval": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-invalid-this": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-multi-spaces": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"exceptions": {
|
||||||
|
"Property": true,
|
||||||
|
"VariableDeclarator": true,
|
||||||
|
"AssignmentExpression": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-new-wrappers": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-new": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-return-assign": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-self-compare": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-unmodified-loop-condition": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-unused-expressions": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-call": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-concat": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-useless-escape": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"no-useless-return": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-with": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"radix": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"yoda": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"no-undef-init": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-use-before-define": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"functions": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"array-bracket-spacing": [
|
||||||
|
"off",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"block-spacing": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"brace-style": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"camelcase": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"comma-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"comma-style": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"computed-property-spacing": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"consistent-this": [
|
||||||
|
"off",
|
||||||
|
"self"
|
||||||
|
],
|
||||||
|
"eol-last": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"func-call-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"func-name-matching": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"key-spacing": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"mode": "minimum"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"keyword-spacing": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"max-len": [
|
||||||
|
"off",
|
||||||
|
80
|
||||||
|
],
|
||||||
|
"max-statements-per-line": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"max": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"new-cap": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"new-parens": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-array-constructor": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-mixed-operators": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"groups": [
|
||||||
|
[
|
||||||
|
"&",
|
||||||
|
"|",
|
||||||
|
"^",
|
||||||
|
"~",
|
||||||
|
"<<",
|
||||||
|
">>",
|
||||||
|
">>>"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"==",
|
||||||
|
"!=",
|
||||||
|
"===",
|
||||||
|
"!==",
|
||||||
|
">",
|
||||||
|
">=",
|
||||||
|
"<",
|
||||||
|
"<="
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"&&",
|
||||||
|
"||"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"in",
|
||||||
|
"instanceof"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-new-object": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-tabs": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-trailing-spaces": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-unneeded-ternary": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-whitespace-before-property": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"object-curly-spacing": [
|
||||||
|
"off",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"one-var-declaration-per-line": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"one-var": [
|
||||||
|
"off",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"operator-assignment": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"operator-linebreak": [
|
||||||
|
"error",
|
||||||
|
"after"
|
||||||
|
],
|
||||||
|
"quote-props": [
|
||||||
|
"off",
|
||||||
|
"as-needed"
|
||||||
|
],
|
||||||
|
"semi-spacing": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"space-before-blocks": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"space-before-function-paren": [
|
||||||
|
"off",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"space-in-parens": [
|
||||||
|
"off",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"space-infix-ops": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"space-unary-ops": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"words": false,
|
||||||
|
"nonwords": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"unicode-bom": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-caller": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"no-loop-func": [
|
||||||
|
"error"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"globals": {
|
||||||
|
"OpenSeadragon": true,
|
||||||
|
"define": false,
|
||||||
|
"module": false
|
||||||
|
}
|
||||||
|
}
|
6
.hound.yml
Normal file
6
.hound.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
jshint:
|
||||||
|
config_file: .jshintrc
|
||||||
|
|
||||||
|
eslint:
|
||||||
|
enabled: true
|
||||||
|
config_file: .eslintrc.hound.json
|
@ -11,6 +11,7 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks("grunt-contrib-connect");
|
grunt.loadNpmTasks("grunt-contrib-connect");
|
||||||
grunt.loadNpmTasks("grunt-contrib-watch");
|
grunt.loadNpmTasks("grunt-contrib-watch");
|
||||||
grunt.loadNpmTasks("grunt-contrib-clean");
|
grunt.loadNpmTasks("grunt-contrib-clean");
|
||||||
|
grunt.loadNpmTasks("grunt-eslint");
|
||||||
grunt.loadNpmTasks("grunt-git-describe");
|
grunt.loadNpmTasks("grunt-git-describe");
|
||||||
grunt.loadNpmTasks('grunt-text-replace');
|
grunt.loadNpmTasks('grunt-text-replace');
|
||||||
|
|
||||||
@ -194,6 +195,12 @@ module.exports = function(grunt) {
|
|||||||
beforeconcat: sources,
|
beforeconcat: sources,
|
||||||
afterconcat: [ distribution ]
|
afterconcat: [ distribution ]
|
||||||
},
|
},
|
||||||
|
eslint: {
|
||||||
|
options: {
|
||||||
|
configFile: '.eslintrc.json'
|
||||||
|
},
|
||||||
|
target: sources
|
||||||
|
},
|
||||||
"git-describe": {
|
"git-describe": {
|
||||||
build: {}
|
build: {}
|
||||||
}
|
}
|
||||||
@ -266,7 +273,7 @@ module.exports = function(grunt) {
|
|||||||
// Cleans out the build folder and builds the code and images into it, checking lint.
|
// Cleans out the build folder and builds the code and images into it, checking lint.
|
||||||
grunt.registerTask("build", [
|
grunt.registerTask("build", [
|
||||||
"clean:build", "jshint:beforeconcat", "git-describe", "concat", "jshint:afterconcat",
|
"clean:build", "jshint:beforeconcat", "git-describe", "concat", "jshint:afterconcat",
|
||||||
"uglify", "replace:cleanPaths", "copy:build"
|
"eslint", "uglify", "replace:cleanPaths", "copy:build"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// ----------
|
// ----------
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
"grunt-contrib-uglify": "^2.0.0",
|
"grunt-contrib-uglify": "^2.0.0",
|
||||||
"grunt-contrib-watch": "^0.6.1",
|
"grunt-contrib-watch": "^0.6.1",
|
||||||
"grunt-git-describe": "^2.3.2",
|
"grunt-git-describe": "^2.3.2",
|
||||||
|
"grunt-eslint": "^19.0.0",
|
||||||
"grunt-qunit-istanbul": "^0.6.0",
|
"grunt-qunit-istanbul": "^0.6.0",
|
||||||
"grunt-text-replace": "^0.4.0",
|
"grunt-text-replace": "^0.4.0",
|
||||||
"qunitjs": "^1.20.0"
|
"qunitjs": "^1.20.0"
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
*/
|
*/
|
||||||
$.IIIFTileSource = function( options ){
|
$.IIIFTileSource = function( options ){
|
||||||
|
|
||||||
|
/* eslint-disable camelcase */
|
||||||
|
|
||||||
$.extend( true, this, options );
|
$.extend( true, this, options );
|
||||||
|
|
||||||
@ -400,7 +401,9 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea
|
|||||||
height: options.sizes[i].height
|
height: options.sizes[i].height
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return levels.sort(function(a,b){return a.width - b.width;});
|
return levels.sort(function(a, b) {
|
||||||
|
return a.width - b.width;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -160,6 +160,7 @@
|
|||||||
* @memberof OpenSeadragon.MouseTracker#
|
* @memberof OpenSeadragon.MouseTracker#
|
||||||
*/
|
*/
|
||||||
this.dblClickDistThreshold = options.dblClickDistThreshold || $.DEFAULT_SETTINGS.dblClickDistThreshold;
|
this.dblClickDistThreshold = options.dblClickDistThreshold || $.DEFAULT_SETTINGS.dblClickDistThreshold;
|
||||||
|
/*eslint-disable no-multi-spaces*/
|
||||||
this.userData = options.userData || null;
|
this.userData = options.userData || null;
|
||||||
this.stopDelay = options.stopDelay || 50;
|
this.stopDelay = options.stopDelay || 50;
|
||||||
|
|
||||||
@ -182,6 +183,7 @@
|
|||||||
this.keyHandler = options.keyHandler || null;
|
this.keyHandler = options.keyHandler || null;
|
||||||
this.focusHandler = options.focusHandler || null;
|
this.focusHandler = options.focusHandler || null;
|
||||||
this.blurHandler = options.blurHandler || null;
|
this.blurHandler = options.blurHandler || null;
|
||||||
|
/*eslint-enable no-multi-spaces*/
|
||||||
|
|
||||||
//Store private properties in a scope sealed hash map
|
//Store private properties in a scope sealed hash map
|
||||||
var _this = this;
|
var _this = this;
|
||||||
@ -1370,6 +1372,7 @@
|
|||||||
eventParams = getCaptureEventParams( tracker, $.MouseTracker.havePointerEvents ? 'pointerevent' : pointerType );
|
eventParams = getCaptureEventParams( tracker, $.MouseTracker.havePointerEvents ? 'pointerevent' : pointerType );
|
||||||
// We emulate mouse capture by hanging listeners on the document object.
|
// We emulate mouse capture by hanging listeners on the document object.
|
||||||
// (Note we listen on the capture phase so the captured handlers will get called first)
|
// (Note we listen on the capture phase so the captured handlers will get called first)
|
||||||
|
// eslint-disable-next-line no-use-before-define
|
||||||
if (isInIframe && canAccessEvents(window.top)) {
|
if (isInIframe && canAccessEvents(window.top)) {
|
||||||
$.addEvent(
|
$.addEvent(
|
||||||
window.top,
|
window.top,
|
||||||
@ -1413,6 +1416,7 @@
|
|||||||
eventParams = getCaptureEventParams( tracker, $.MouseTracker.havePointerEvents ? 'pointerevent' : pointerType );
|
eventParams = getCaptureEventParams( tracker, $.MouseTracker.havePointerEvents ? 'pointerevent' : pointerType );
|
||||||
// We emulate mouse capture by hanging listeners on the document object.
|
// We emulate mouse capture by hanging listeners on the document object.
|
||||||
// (Note we listen on the capture phase so the captured handlers will get called first)
|
// (Note we listen on the capture phase so the captured handlers will get called first)
|
||||||
|
// eslint-disable-next-line no-use-before-define
|
||||||
if (isInIframe && canAccessEvents(window.top)) {
|
if (isInIframe && canAccessEvents(window.top)) {
|
||||||
$.removeEvent(
|
$.removeEvent(
|
||||||
window.top,
|
window.top,
|
||||||
@ -1703,7 +1707,7 @@
|
|||||||
|
|
||||||
// Calculate deltaY
|
// Calculate deltaY
|
||||||
if ( $.MouseTracker.wheelEventName == "mousewheel" ) {
|
if ( $.MouseTracker.wheelEventName == "mousewheel" ) {
|
||||||
simulatedEvent.deltaY = - 1 / $.DEFAULT_SETTINGS.pixelsPerWheelLine * event.wheelDelta;
|
simulatedEvent.deltaY = -event.wheelDelta / $.DEFAULT_SETTINGS.pixelsPerWheelLine;
|
||||||
} else {
|
} else {
|
||||||
simulatedEvent.deltaY = event.detail;
|
simulatedEvent.deltaY = event.detail;
|
||||||
}
|
}
|
||||||
@ -2207,10 +2211,7 @@
|
|||||||
* @inner
|
* @inner
|
||||||
*/
|
*/
|
||||||
function onTouchCancel( tracker, event ) {
|
function onTouchCancel( tracker, event ) {
|
||||||
var i,
|
var pointsList = tracker.getActivePointersListByType('touch');
|
||||||
touchCount = event.changedTouches.length,
|
|
||||||
gPoints = [],
|
|
||||||
pointsList = tracker.getActivePointersListByType( 'touch' );
|
|
||||||
|
|
||||||
abortTouchContacts( tracker, event, pointsList );
|
abortTouchContacts( tracker, event, pointsList );
|
||||||
}
|
}
|
||||||
@ -2565,8 +2566,7 @@
|
|||||||
* Gesture points associated with the event.
|
* Gesture points associated with the event.
|
||||||
*/
|
*/
|
||||||
function updatePointersExit( tracker, event, gPoints ) {
|
function updatePointersExit( tracker, event, gPoints ) {
|
||||||
var delegate = THIS[ tracker.hash ],
|
var pointsList = tracker.getActivePointersListByType(gPoints[0].type),
|
||||||
pointsList = tracker.getActivePointersListByType( gPoints[ 0 ].type ),
|
|
||||||
i,
|
i,
|
||||||
gPointCount = gPoints.length,
|
gPointCount = gPoints.length,
|
||||||
curGPoint,
|
curGPoint,
|
||||||
@ -2801,7 +2801,6 @@
|
|||||||
var delegate = THIS[ tracker.hash ],
|
var delegate = THIS[ tracker.hash ],
|
||||||
pointsList = tracker.getActivePointersListByType( gPoints[ 0 ].type ),
|
pointsList = tracker.getActivePointersListByType( gPoints[ 0 ].type ),
|
||||||
propagate,
|
propagate,
|
||||||
insideElementReleased,
|
|
||||||
releasePoint,
|
releasePoint,
|
||||||
releaseTime,
|
releaseTime,
|
||||||
i,
|
i,
|
||||||
|
@ -859,7 +859,7 @@ function OpenSeadragon( options ){
|
|||||||
try {
|
try {
|
||||||
// We test if the canvas is tainted by retrieving data from it.
|
// We test if the canvas is tainted by retrieving data from it.
|
||||||
// An exception will be raised if the canvas is tainted.
|
// An exception will be raised if the canvas is tainted.
|
||||||
var data = canvas.getContext('2d').getImageData(0, 0, 1, 1);
|
canvas.getContext('2d').getImageData(0, 0, 1, 1);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
isTainted = true;
|
isTainted = true;
|
||||||
}
|
}
|
||||||
@ -1026,10 +1026,46 @@ function OpenSeadragon( options ){
|
|||||||
dblClickDistThreshold: 20,
|
dblClickDistThreshold: 20,
|
||||||
springStiffness: 6.5,
|
springStiffness: 6.5,
|
||||||
animationTime: 1.2,
|
animationTime: 1.2,
|
||||||
gestureSettingsMouse: { scrollToZoom: true, clickToZoom: true, dblClickToZoom: false, pinchToZoom: false, flickEnabled: false, flickMinSpeed: 120, flickMomentum: 0.25, pinchRotate: false },
|
gestureSettingsMouse: {
|
||||||
gestureSettingsTouch: { scrollToZoom: false, clickToZoom: false, dblClickToZoom: true, pinchToZoom: true, flickEnabled: true, flickMinSpeed: 120, flickMomentum: 0.25, pinchRotate: false },
|
scrollToZoom: true,
|
||||||
gestureSettingsPen: { scrollToZoom: false, clickToZoom: true, dblClickToZoom: false, pinchToZoom: false, flickEnabled: false, flickMinSpeed: 120, flickMomentum: 0.25, pinchRotate: false },
|
clickToZoom: true,
|
||||||
gestureSettingsUnknown: { scrollToZoom: false, clickToZoom: false, dblClickToZoom: true, pinchToZoom: true, flickEnabled: true, flickMinSpeed: 120, flickMomentum: 0.25, pinchRotate: false },
|
dblClickToZoom: false,
|
||||||
|
pinchToZoom: false,
|
||||||
|
flickEnabled: false,
|
||||||
|
flickMinSpeed: 120,
|
||||||
|
flickMomentum: 0.25,
|
||||||
|
pinchRotate: false
|
||||||
|
},
|
||||||
|
gestureSettingsTouch: {
|
||||||
|
scrollToZoom: false,
|
||||||
|
clickToZoom: false,
|
||||||
|
dblClickToZoom: true,
|
||||||
|
pinchToZoom: true,
|
||||||
|
flickEnabled: true,
|
||||||
|
flickMinSpeed: 120,
|
||||||
|
flickMomentum: 0.25,
|
||||||
|
pinchRotate: false
|
||||||
|
},
|
||||||
|
gestureSettingsPen: {
|
||||||
|
scrollToZoom: false,
|
||||||
|
clickToZoom: true,
|
||||||
|
dblClickToZoom: false,
|
||||||
|
pinchToZoom: false,
|
||||||
|
flickEnabled: false,
|
||||||
|
flickMinSpeed: 120,
|
||||||
|
flickMomentum: 0.25,
|
||||||
|
pinchRotate: false
|
||||||
|
},
|
||||||
|
gestureSettingsUnknown: {
|
||||||
|
scrollToZoom: false,
|
||||||
|
clickToZoom: false,
|
||||||
|
dblClickToZoom: true,
|
||||||
|
pinchToZoom: true,
|
||||||
|
flickEnabled: true,
|
||||||
|
flickMinSpeed: 120,
|
||||||
|
flickMomentum: 0.25,
|
||||||
|
pinchRotate: false
|
||||||
|
},
|
||||||
zoomPerClick: 2,
|
zoomPerClick: 2,
|
||||||
zoomPerScroll: 1.2,
|
zoomPerScroll: 1.2,
|
||||||
zoomPerSecond: 1.0,
|
zoomPerSecond: 1.0,
|
||||||
@ -1675,7 +1711,9 @@ function OpenSeadragon( options ){
|
|||||||
if (Date.now) {
|
if (Date.now) {
|
||||||
$.now = Date.now;
|
$.now = Date.now;
|
||||||
} else {
|
} else {
|
||||||
$.now = function() { return new Date().getTime(); };
|
$.now = function() {
|
||||||
|
return new Date().getTime();
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return $.now();
|
return $.now();
|
||||||
@ -2012,6 +2050,7 @@ function OpenSeadragon( options ){
|
|||||||
* @returns {String} The value of the url parameter or null if no param matches.
|
* @returns {String} The value of the url parameter or null if no param matches.
|
||||||
*/
|
*/
|
||||||
getUrlParameter: function( key ) {
|
getUrlParameter: function( key ) {
|
||||||
|
// eslint-disable-next-line no-use-before-define
|
||||||
var value = URLPARAMS[ key ];
|
var value = URLPARAMS[ key ];
|
||||||
return value ? value : null;
|
return value ? value : null;
|
||||||
},
|
},
|
||||||
@ -2332,6 +2371,7 @@ function OpenSeadragon( options ){
|
|||||||
// Should only be used by IE8 in non standards mode
|
// Should only be used by IE8 in non standards mode
|
||||||
$.parseJSON = function(string) {
|
$.parseJSON = function(string) {
|
||||||
/*jshint evil:true*/
|
/*jshint evil:true*/
|
||||||
|
//eslint-disable-next-line no-eval
|
||||||
return eval('(' + string + ')');
|
return eval('(' + string + ')');
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -2347,6 +2387,7 @@ function OpenSeadragon( options ){
|
|||||||
*/
|
*/
|
||||||
imageFormatSupported: function( extension ) {
|
imageFormatSupported: function( extension ) {
|
||||||
extension = extension ? extension : "";
|
extension = extension ? extension : "";
|
||||||
|
// eslint-disable-next-line no-use-before-define
|
||||||
return !!FILEFORMATS[ extension.toLowerCase() ];
|
return !!FILEFORMATS[ extension.toLowerCase() ];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2383,8 +2424,7 @@ function OpenSeadragon( options ){
|
|||||||
(function() {
|
(function() {
|
||||||
//A small auto-executing routine to determine the browser vendor,
|
//A small auto-executing routine to determine the browser vendor,
|
||||||
//version and supporting feature sets.
|
//version and supporting feature sets.
|
||||||
var app = navigator.appName,
|
var ver = navigator.appVersion,
|
||||||
ver = navigator.appVersion,
|
|
||||||
ua = navigator.userAgent,
|
ua = navigator.userAgent,
|
||||||
regex;
|
regex;
|
||||||
|
|
||||||
@ -2406,7 +2446,7 @@ function OpenSeadragon( options ){
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "Netscape":
|
case "Netscape":
|
||||||
if( !!window.addEventListener ){
|
if (window.addEventListener) {
|
||||||
if ( ua.indexOf( "Firefox" ) >= 0 ) {
|
if ( ua.indexOf( "Firefox" ) >= 0 ) {
|
||||||
$.Browser.vendor = $.BROWSERS.FIREFOX;
|
$.Browser.vendor = $.BROWSERS.FIREFOX;
|
||||||
$.Browser.version = parseFloat(
|
$.Browser.version = parseFloat(
|
||||||
|
@ -592,6 +592,4 @@ function onKeyPress( event ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}(OpenSeadragon));
|
}(OpenSeadragon));
|
||||||
|
@ -268,7 +268,7 @@ $.Viewer = function( options ) {
|
|||||||
|
|
||||||
this.innerTracker = new $.MouseTracker({
|
this.innerTracker = new $.MouseTracker({
|
||||||
element: this.canvas,
|
element: this.canvas,
|
||||||
startDisabled: this.mouseNavEnabled ? false : true,
|
startDisabled: !this.mouseNavEnabled,
|
||||||
clickTimeThreshold: this.clickTimeThreshold,
|
clickTimeThreshold: this.clickTimeThreshold,
|
||||||
clickDistThreshold: this.clickDistThreshold,
|
clickDistThreshold: this.clickDistThreshold,
|
||||||
dblClickTimeThreshold: this.dblClickTimeThreshold,
|
dblClickTimeThreshold: this.dblClickTimeThreshold,
|
||||||
@ -291,7 +291,7 @@ $.Viewer = function( options ) {
|
|||||||
|
|
||||||
this.outerTracker = new $.MouseTracker({
|
this.outerTracker = new $.MouseTracker({
|
||||||
element: this.container,
|
element: this.container,
|
||||||
startDisabled: this.mouseNavEnabled ? false : true,
|
startDisabled: !this.mouseNavEnabled,
|
||||||
clickTimeThreshold: this.clickTimeThreshold,
|
clickTimeThreshold: this.clickTimeThreshold,
|
||||||
clickDistThreshold: this.clickDistThreshold,
|
clickDistThreshold: this.clickDistThreshold,
|
||||||
dblClickTimeThreshold: this.dblClickTimeThreshold,
|
dblClickTimeThreshold: this.dblClickTimeThreshold,
|
||||||
@ -869,7 +869,6 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
bodyStyle = body.style,
|
bodyStyle = body.style,
|
||||||
docStyle = document.documentElement.style,
|
docStyle = document.documentElement.style,
|
||||||
_this = this,
|
_this = this,
|
||||||
hash,
|
|
||||||
nodes,
|
nodes,
|
||||||
i;
|
i;
|
||||||
|
|
||||||
@ -1032,8 +1031,8 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
var pageScroll = $.getPageScroll();
|
var pageScroll = $.getPageScroll();
|
||||||
restoreScrollCounter++;
|
restoreScrollCounter++;
|
||||||
if (restoreScrollCounter < 10 &&
|
if (restoreScrollCounter < 10 &&
|
||||||
pageScroll.x !== _this.pageScroll.x ||
|
(pageScroll.x !== _this.pageScroll.x ||
|
||||||
pageScroll.y !== _this.pageScroll.y ) {
|
pageScroll.y !== _this.pageScroll.y)) {
|
||||||
$.requestAnimationFrame( restoreScroll );
|
$.requestAnimationFrame( restoreScroll );
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -212,7 +212,8 @@ $.extend( $.World.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.W
|
|||||||
// We need to make sure any pending images are canceled so the world items don't get messed up
|
// We need to make sure any pending images are canceled so the world items don't get messed up
|
||||||
this.viewer._cancelPendingImages();
|
this.viewer._cancelPendingImages();
|
||||||
var item;
|
var item;
|
||||||
for (var i = 0; i < this._items.length; i++) {
|
var i;
|
||||||
|
for (i = 0; i < this._items.length; i++) {
|
||||||
item = this._items[i];
|
item = this._items[i];
|
||||||
item.removeHandler('bounds-change', this._delegatedFigureSizes);
|
item.removeHandler('bounds-change', this._delegatedFigureSizes);
|
||||||
item.removeHandler('clip-change', this._delegatedFigureSizes);
|
item.removeHandler('clip-change', this._delegatedFigureSizes);
|
||||||
|
Loading…
Reference in New Issue
Block a user