rebuild playground using dist folder (#96)

This commit is contained in:
Omer Ganim 2016-05-02 15:59:45 +03:00
parent cef886ac7d
commit 731296b27a
5 changed files with 53939 additions and 49343 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,11 @@ define([
return React.createElement('li', {
'role': 'presentation',
'key': 'tab' + tabIndex,
'className': _.keys(_.pick({ active: this.state.currentTab === tab[0] }, _.identity)).join(' '),
'className': _({ active: this.state.currentTab === tab[0] }).transform(function (res, value, key) {
if (value) {
res.push(key);
}
}, []).join(' '),
'onClick': onClick1.bind(this, tab, tabIndex)
}, React.createElement('a', { 'aria-controls': tab[1] }, tab[1]));
}