mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
rebuild playground using dist folder (#96)
This commit is contained in:
parent
cef886ac7d
commit
731296b27a
2
playground/dist/fiddle.min.js
vendored
2
playground/dist/fiddle.min.js
vendored
File diff suppressed because one or more lines are too long
2
playground/dist/home.min.js
vendored
2
playground/dist/home.min.js
vendored
File diff suppressed because one or more lines are too long
103234
playground/dist/rt-main.browser.js
vendored
103234
playground/dist/rt-main.browser.js
vendored
File diff suppressed because one or more lines are too long
38
playground/dist/rt-main.browser.min.js
vendored
38
playground/dist/rt-main.browser.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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]));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user