Takeharu.Oshida
Takeharu.Oshida
@warent Thanks your investigation! Bug1: for big content issue is due to reflow. I think it will be resolve with css. https://github.com/georgeOsdDev/react-draggable-tab/issues/68 Bug2: I could reproduce what you mean. https://gyazo.com/e2753b8be4cfcb8b8d036f680ae3b864...
Hi, `onTabSelect` is called after changing internal state. https://github.com/georgeOsdDev/react-draggable-tab/blob/master/src/components/Tabs.js#L256 So your callback with `event.preventDefault()` will do nothing. I think we have 3 ideas to resolve your request. Idea1: re-set selected...
Hi Uri, I think `keepSelectedTab` prop resolve your confusion. When `keepSelectedTab=true`, case moved tab is `selectedTab`: => onTabSelected will be triggered. case moved tab is not `selectedTab`: => onTabSelected will...
I want to handle tabs like atom editor, chrome browser does instead of drop down. I'm welcome your pull request!
Drag event is handled on wrapper component so there are no drag event on displaying `li` element. https://github.com/georgeOsdDev/react-draggable-tab/blob/master/src/components/Tabs.js#L482 And this is main feature of this component. If you want to...
@thisisbrianm For now, `disableDrag` is prop of `Tabs`, We can enable change that as prop of `Tab`. I'm welcome your PR. https://github.com/georgeOsdDev/react-draggable-tab/pull/81 https://github.com/georgeOsdDev/react-draggable-tab/blob/master/src/components/Tabs.js#L481
Thank you feedback. For horizontal scroll: You can override `scrollX:'scroll'` `with props.tabsStyles.tabBar` And you can use any element with your style as `props.tabAddButton`.  For limiting tab...
Latest commit https://github.com/mobilusoss/react-web-notification/commit/26b8f84df34283a7b873c1008e4791f63b81300c is deployed on https://mobilusoss.github.io/react-web-notification/example/ I can see the notification 
I'm always welcome your Pull Request