Skip to content

Commit

Permalink
Update version to 3.0.2; update eslint rules and make fixes; stop shi…
Browse files Browse the repository at this point in the history
…pping music controllers since they weren't being used
  • Loading branch information
jaredsohn committed Nov 20, 2016
1 parent 70c22a4 commit 477a434
Show file tree
Hide file tree
Showing 85 changed files with 4 additions and 30,132 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@

////////// Extra React/JSX ///////
"react/no-multi-comp": 1,

"react/react-in-jsx-scope": 0,
"react/jsx-space-before-closing": 0,
////////// Legacy //////////

"max-depth": 0, // specify the maximum depth that blocks can be nested (off by default)
Expand Down
624 changes: 0 additions & 624 deletions build/js/DefaultController.js

This file was deleted.

24 changes: 1 addition & 23 deletions build/js/client-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -22784,8 +22784,6 @@ module.exports = function (scorer) {
},{}],185:[function(require,module,exports){
"use strict";

var ReactDom = require('react-dom');

var hideDucking_ = false;

module.exports = React.createClass({
Expand Down Expand Up @@ -22971,26 +22969,6 @@ module.exports = React.createClass({
}
},

/* componentDidUpdate: function() {
if (this.props.selected) {
this.ensureVisible();
}
},*/

/*
ensureVisible: function() {
let node = ReactDom.findDOMNode(this);
let myTop = node.offsetTop;
let myBottom = myTop + node.offsetHeight;
let containerScrollTop = this.props.containerScrollTop;
let containerScrollBottom = containerScrollTop + this.props.containerHeight;

if (myTop < containerScrollTop) this.props.setContainerScrollTop(myTop);
if (myBottom > containerScrollBottom) {
this.props.setContainerScrollTop(containerScrollTop + myBottom - containerScrollBottom);
}
},
*/
getTabTitle: function getTabTitle(tab) {
return tab.title;
},
Expand Down Expand Up @@ -23085,7 +23063,7 @@ module.exports = React.createClass({
}
});

},{"react-dom":28}],186:[function(require,module,exports){
},{}],186:[function(require,module,exports){
'use strict';

/*eslint-disable no-unused-vars*/
Expand Down
Loading

0 comments on commit 477a434

Please sign in to comment.