Skip to content

Commit

Permalink
Changed default track.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed May 15, 2017
1 parent 07d7cbb commit 141f531
Showing 1 changed file with 19 additions and 44 deletions.
63 changes: 19 additions & 44 deletions public/js/audioanalyzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -33922,44 +33922,26 @@ var Frequency = React.createClass({
freqStyle.color = this.colors[Math.ceil(this.colors.length / 255 * this.state.frequency) - 1];
}

return (
// @formatter:offf
return React.createElement(
'li',
null,
React.createElement(
'span',
{ className: 'title' },
this.props.title
),
React.createElement('br', null),
React.createElement(
'li',
null,
' ',
React.createElement(
'span',
{ className: 'title' },
' ',
this.props.title,
' '
),
React.createElement('br', null),
' ',
React.createElement(
'span',
{ className: 'freq',
style: freqStyle },
' ',
this.state.frequency,
' '
)
'span',
{ className: 'freq', style: freqStyle },
this.state.frequency
)
);
}
});

module.exports = Frequency;

module.exports = Frequency;
ency;

module.exports = Frequency;
ency;

module.exports = Frequency;

},{"../rx/dist/rx.all.js":182,"react":181}],184:[function(require,module,exports){
'use strict';

Expand All @@ -33972,20 +33954,13 @@ var FrequencyGroup = React.createClass({
return React.createElement(
'ul',
null,
React.createElement(Frequency, { type: 'sublow',
title: '< 100' }),
React.createElement(Frequency, { type: 'low',
title: '100-250' }),
React.createElement(Frequency, { type: 'lowmid',
title: '250-500' }),
React.createElement(Frequency, { type: 'mid',
title: '500-1k' }),
React.createElement(Frequency, { type: 'highmid',
title: '1k-5k' }),
React.createElement(Frequency, { type: 'high',
title: '5k-10k' }),
React.createElement(Frequency, { type: 'superhigh',
title: '> 10k' })
React.createElement(Frequency, { type: 'sublow', title: '< 100' }),
React.createElement(Frequency, { type: 'low', title: '100-250' }),
React.createElement(Frequency, { type: 'lowmid', title: '250-500' }),
React.createElement(Frequency, { type: 'mid', title: '500-1k' }),
React.createElement(Frequency, { type: 'highmid', title: '1k-5k' }),
React.createElement(Frequency, { type: 'high', title: '5k-10k' }),
React.createElement(Frequency, { type: 'superhigh', title: '> 10k' })
);
}
});
Expand Down

0 comments on commit 141f531

Please sign in to comment.