axe-core 2.6.0 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.npmignore ADDED
@@ -0,0 +1,4 @@
1
+ tmp
2
+ dist
3
+ node_modules
4
+ *.tgz
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ <a name="2.6.1"></a>
6
+ # [2.6.1](https://github.com/dequelabs/axe-core/compare/v2.6.0...v2.6.1) (2017-12-28)
7
+
8
+ ### Bug Fixes
9
+
10
+ * Remove console.log statement
11
+
12
+
5
13
  <a name="2.6.0"></a>
6
14
  # [2.6.0](https://github.com/dequelabs/axe-core/compare/v2.5.0...v2.6.0) (2017-12-19)
7
15
 
package/axe.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Type definitions for axe-core 2.6.0
1
+ // Type definitions for axe-core 2.6.1
2
2
  // Project: https://github.com/dequelabs/axe-core
3
3
  // Definitions by: Marcy Sutton <https://github.com/marcysutton>
4
4
 
package/axe.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! aXe v2.6.0
1
+ /*! aXe v2.6.1
2
2
  * Copyright (c) 2017 Deque Systems, Inc.
3
3
  *
4
4
  * Your use of this Source Code Form is subject to the terms of the Mozilla Public
@@ -19,7 +19,7 @@
19
19
  return obj && typeof Symbol === 'function' && obj.constructor === Symbol && obj !== Symbol.prototype ? 'symbol' : typeof obj;
20
20
  };
21
21
  var axe = axe || {};
22
- axe.version = '2.6.0';
22
+ axe.version = '2.6.1';
23
23
  if (typeof define === 'function' && define.amd) {
24
24
  define([], function() {
25
25
  'use strict';
@@ -8069,7 +8069,6 @@
8069
8069
  };
8070
8070
  dom.isFocusable = function(el) {
8071
8071
  'use strict';
8072
- console.log(el);
8073
8072
  if (dom.isNativelyFocusable(el)) {
8074
8073
  return true;
8075
8074
  }