Fix broken tests
This commit is contained in:
parent
601dc0d8b3
commit
ee90edae27
4 changed files with 95 additions and 97 deletions
|
@ -94,9 +94,8 @@ export default class ImageFile {
|
|||
});
|
||||
return [maxWidth, maxHeight];
|
||||
}
|
||||
// eslint-disable-next-line class-methods-use-this
|
||||
views() {
|
||||
return {
|
||||
// eslint-disable-next-line
|
||||
views = {
|
||||
'two-up': function() {
|
||||
return $('.two-up.view .wrap', this.file).each((function(_this) {
|
||||
return function(index, wrap) {
|
||||
|
@ -191,7 +190,6 @@ export default class ImageFile {
|
|||
};
|
||||
})(this));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
requestImageInfo(img, callback) {
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<div
|
||||
:id="id"
|
||||
class="modal"
|
||||
:class="id !== '' ? '' : 'show'"
|
||||
:class="id === '' ? '' : 'show'"
|
||||
role="dialog"
|
||||
tabindex="-1"
|
||||
>
|
||||
|
@ -147,7 +147,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-if="id !== ''"
|
||||
v-if="id === ''"
|
||||
class="modal-backdrop fade in"
|
||||
>
|
||||
</div>
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
"devDependencies": {
|
||||
"@gitlab-org/gitlab-svgs": "^1.5.0",
|
||||
"babel-plugin-istanbul": "^4.1.5",
|
||||
"eslint": "3.18.0",
|
||||
"eslint": "^3.18.0",
|
||||
"eslint-config-airbnb-base": "^10.0.1",
|
||||
"eslint-import-resolver-webpack": "^0.8.3",
|
||||
"eslint-plugin-filenames": "^1.1.0",
|
||||
|
|
|
@ -2419,9 +2419,9 @@ eslint-visitor-keys@^1.0.0:
|
|||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
||||
|
||||
eslint@3.18.0:
|
||||
version "3.18.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.18.0.tgz#647e985c4ae71502d20ac62c109f66d5104c8a4b"
|
||||
eslint@^3.18.0:
|
||||
version "3.19.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc"
|
||||
dependencies:
|
||||
babel-code-frame "^6.16.0"
|
||||
chalk "^1.1.3"
|
||||
|
|
Loading…
Reference in a new issue