Browse Source

Fix ESLint errors (#2763)

* fix dist/js/demo.js eslint error

* fix Layout.js eslint error

* remove unnecessary semicolon

* remove unexpected token

* add missing radix for parseInt in Layout.js
pull/2764/head
REJack 5 years ago committed by GitHub
parent
commit
0641a8442d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/js/Layout.js
  2. 5
      dist/js/demo.js

2
build/js/Layout.js

@ -131,7 +131,7 @@ const Layout = ($ => {
if (this._config.loginRegisterAutoHeight === true) {
this.fixLoginRegisterHeight()
} else if (Number.isInteger(this._config.loginRegisterAutoHeight)) {
} else if (this._config.loginRegisterAutoHeight === parseInt(this._config.loginRegisterAutoHeight, 10)) {
setInterval(this.fixLoginRegisterHeight, this._config.loginRegisterAutoHeight)
}

5
dist/js/demo.js vendored

@ -366,8 +366,9 @@
})
$container.append($logo_variants)
var $clear_btn = $('<a />', {
href: 'javascript:void(0)'
}).text('clear').on('click', function () {
href: '#'
}).text('clear').on('click', function (e) {
e.preventDefault()
var $logo = $('.brand-link')
logo_skins.forEach(function (skin) {
$logo.removeClass(skin)

Loading…
Cancel
Save