<!DOCTYPE html>
<html>
<head>
<title>Examples</title>
</head>
<body>
<div class="container">
<pre><%= toolbar id => 'my-toolbar',
groups => [
{ buttons => [
['Button 1'],
['Button 2'],
['Button 3'],
],
},
{ buttons => [
['Button 4', primary],
['Button 5'],
['Button 6'],
],
},
]
%></pre>
<pre><div class="btn-toolbar" id="my-toolbar">
<div class="btn-group">
<button class="btn btn-default" type="button">Button 1</button>
<button class="btn btn-default" type="button">Button 2</button>
<button class="btn btn-default" type="button">Button 3</button>
</div>
<div class="btn-group">
<button class="btn btn-primary" type="button">Button 4</button>
<button class="btn btn-default" type="button">Button 5</button>
<button class="btn btn-default" type="button">Button 6</button>
</div>
</div></pre>
<div> <div class="btn-toolbar" id="my-toolbar"> <div class="btn-group"> <button class="btn btn-default" type="button">Button 1</button> <button class="btn btn-default" type="button">Button 2</button> <button class="btn btn-default" type="button">Button 3</button> </div> <div class="btn-group"> <button class="btn btn-primary" type="button">Button 4</button> <button class="btn btn-default" type="button">Button 5</button> <button class="btn btn-default" type="button">Button 6</button> </div> </div></div>
</div>
<pre style="background-color: #fff; border-width: 0px;">
</pre>
</body>
</html>