Skip to content

Commit 8c74682

Browse files
committed
remove logs
1 parent 7f9ddbc commit 8c74682

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

dist/MenuItem.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ var AriaMenuButtonMenuItem = function (_React$Component) {
4545
// If there's no value, we'll send the child
4646
var value = typeof _this.props.value !== 'undefined' ? _this.props.value : _this.props.children;
4747

48-
console.log('RAM - menuitem selectItem called', value, event);
49-
5048
_this.props.ambManager.handleSelection(value, event);
5149
}, _this.setRef = function (instance) {
5250
_this.ref.current = instance;

dist/createManager.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ var focusGroupOptions = {
1010

1111
var protoManager = {
1212
init: function init(options) {
13-
console.log('RAM - init', options);
14-
1513
this.updateOptions(options);
1614

1715
this.handleBlur = handleBlur.bind(this);
@@ -36,8 +34,6 @@ var protoManager = {
3634
updateOptions: function updateOptions(options) {
3735
var oldOptions = this.options;
3836

39-
console.log('RAM - updateOptions', options);
40-
4137
this.options = options || this.options || {};
4238

4339
if (typeof this.options.closeOnSelection === 'undefined') {

src/MenuItem.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ class AriaMenuButtonMenuItem extends React.Component {
3939
? this.props.value
4040
: this.props.children;
4141

42-
console.log('RAM - menuitem selectItem called', value, event)
43-
4442
this.props.ambManager.handleSelection(value, event);
4543
};
4644

src/createManager.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ const focusGroupOptions = {
88

99
const protoManager = {
1010
init(options) {
11-
console.log('RAM - init', options);
12-
1311
this.updateOptions(options);
1412

1513
this.handleBlur = handleBlur.bind(this);
@@ -35,8 +33,6 @@ const protoManager = {
3533
updateOptions(options) {
3634
const oldOptions = this.options;
3735

38-
console.log('RAM - updateOptions', options);
39-
4036
this.options = options || this.options || {};
4137

4238
if (typeof this.options.closeOnSelection === 'undefined') {

0 commit comments

Comments
 (0)