Skip to content

Commit d282621

Browse files
committed
[fixed] Split buttons with React 0.13
Adds a span with an   and letter-spacing shrunkedn to hide the space. For some reason with React 0.13 that span does not have content which causes it to render really small.
1 parent 549da6e commit d282621

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/SplitButton.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ var SplitButton = React.createClass({
5656
id={null}>
5757
<span className="sr-only">{this.props.dropdownTitle}</span>
5858
<span className="caret" />
59+
<span style={{letterSpacing: '-.3em'}}>&nbsp;</span>
5960
</Button>
6061
);
6162

test/SplitButtonSpec.jsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ describe('SplitButton', function () {
2929
assert.equal(button.nodeName, 'BUTTON');
3030
assert.equal(button.type, 'button');
3131
assert.ok(dropdownButton.className.match(/\bdropdown-toggle\b/));
32-
assert.ok(dropdownButton.lastChild.className.match(/\bcaret\b/));
3332
assert.equal(button.innerText.trim(), 'Title');
34-
assert.ok(dropdownButton.firstChild.className.match(/\bsr-only\b/));
35-
assert.equal(dropdownButton.firstChild.innerText.trim(), 'Toggle dropdown');
33+
assert.ok(dropdownButton.childNodes[0].className.match(/\bsr-only\b/));
34+
assert.equal(dropdownButton.childNodes[0].innerText.trim(), 'Toggle dropdown');
35+
assert.ok(dropdownButton.childNodes[1].className.match(/\bcaret\b/));
36+
assert.equal(dropdownButton.childNodes[2].style.letterSpacing, '-0.3em');
37+
assert.equal(dropdownButton.childNodes.length, 3);
3638
});
3739

3840
it('Should render menu correctly', function () {

0 commit comments

Comments
 (0)