base-css.html 54 KB
Newer Older
1001
      <form class="well form-search">
1002
1003
1004
1005
        <input type="text" class="input-small" placeholder="Email">
        <input type="password" class="input-small" placeholder="Password">
        <button type="submit" class="btn">Go</button>
      </form>
1006
1007
    </div>
  </div><!-- /row -->
1008
1009
1010
1011

  <br>

  <h2>Horizontal forms</h2>
1012
  <div class="row">
1013
    <div class="span8">
1014
      <form class="form-horizontal">
1015
        <legend>Controls Bootstrap supports</legend>
1016
1017
1018
1019
        <fieldset class="control-group">
          <label class="control-label" for="input01">Text input</label>
          <div class="controls">
            <input type="text" class="xlarge" name="input01">
1020
            <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p>
1021
1022
          </div>
        </fieldset>
1023
        <fieldset class="control-group">
1024
          <label class="control-label" for="optionsCheckbox">Checkbox</label>
1025
          <div class="controls">
1026
1027
1028
1029
            <label class="checkbox">
              <input type="checkbox" name="optionsCheckbox" value="option1">
              Option one is this and that&mdash;be sure to include why it’s great
            </label>
1030
1031
          </div>
        </fieldset>
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
        <fieldset class="control-group">
          <label class="control-label" for="select01">Select list</label>
          <div class="controls">
            <select name="select01">
              <option>1</option>
              <option>2</option>
              <option>3</option>
              <option>4</option>
              <option>5</option>
            </select>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="multiSelect">Multi-select</label>
          <div class="controls">
            <select multiple="multiple" name="multiSelect">
              <option>1</option>
              <option>2</option>
              <option>3</option>
              <option>4</option>
              <option>5</option>
            </select>
          </div>
        </fieldset>
1056
1057
1058
1059
1060
1061
        <fieldset class="control-group">
          <label class="control-label" for="fileInput">File input</label>
          <div class="controls">
            <input class="input-file" id="fileInput" name="fileInput" type="file">
          </div>
        </fieldset>
1062
1063
1064
1065
1066
1067
        <fieldset class="control-group">
          <label class="control-label" for="textarea">Textarea</label>
          <div class="controls">
            <textarea class="input-xlarge" name="textarea" id="textarea" rows="3"></textarea>
          </div>
        </fieldset>
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
        <fieldset class="form-actions">
          <button type="submit" class="btn primary">Save changes</button>
          <button type="reset" class="btn">Cancel</button>
        </fieldset>
      </form>
    </div>
    <div class="span4">
      <div class="form-docs">
        <h3>What's included</h3>
        <p>Shown on the left are all the default form controls we support. Here's the bulleted list:</p>
        <ul>
          <li>text inputs (text, password, email, etc)</li>
          <li>checkbox</li>
          <li>radio</li>
          <li>select</li>
          <li>multiple select</li>
          <li>file input</li>
          <li>textarea</li>
        </ul>
        <hr>
        <h3>New defaults with v2.0</h3>
        <p>Up to v1.4, Bootstrap's default form styles used the horizontal layout. With Bootstrap 2, we removed that constraint to have smarter, more scalable defaults for any form.</p>
      </div>
    </div>
  </div>

  <br>

  <div class="row">
    <div class="span8">
1098
      <form class="form-horizontal">
1099
        <legend>Form control states</legend>
1100
        <fieldset class="control-group">
1101
          <label class="control-label" for="focusedInput">Focused input</label>
1102
          <div class="controls">
1103
            <input class="input-xlarge focused" id="focusedInput" name="focusedInput" type="text" value="This is focused...">
1104
1105
          </div>
        </fieldset>
1106
        <fieldset class="control-group">
1107
          <label class="control-label" for="disabledInput">Disabled input</label>
1108
          <div class="controls">
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
            <input class="input-xlarge disabled" id="disabledInput" name="disabledInput" type="text" placeholder="Disabled input here..." disabled>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="optionsCheckbox">Disabled checkbox</label>
          <div class="controls">
            <label class="checkbox">
              <input type="checkbox" name="optionsCheckbox" value="option1" disabled>
              This is a disabled checkbox
            </label>
1119
1120
          </div>
        </fieldset>
1121
1122
1123
1124
1125
1126
1127
1128
        <fieldset class="control-group warning">
          <label class="control-label" for="inputError">Input with warning</label>
          <div class="controls">
            <input type="text" name="inputError">
            <span class="help-inline">Something may have gone wrong</span>
          </div>
        </fieldset>
        <fieldset class="control-group error">
1129
1130
1131
          <label class="control-label" for="inputError">Input with error</label>
          <div class="controls">
            <input type="text" name="inputError">
1132
            <span class="help-inline">Please correct the error</span>
1133
1134
          </div>
        </fieldset>
1135
1136
        <fieldset class="control-group success">
          <label class="control-label" for="inputError">Input with success</label>
1137
          <div class="controls">
1138
1139
            <input type="text" name="inputError">
            <span class="help-inline">Woohoo!</span>
1140
1141
          </div>
        </fieldset>
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
        <fieldset class="form-actions">
          <button type="submit" class="btn primary">Save changes</button>
          <button type="reset" class="btn">Cancel</button>
        </fieldset>
      </form>
    </div>
    <div class="span4">
      <div class="form-docs">
        <h3>Redesigned browser states</h3>
        <p>Bootstrap features styles for browser-supported focused and <code>disabled</code> states. We remove the default Webkit <code>outline</code> and apply a <code>box-shadow</code> in it's place for <code>:focus</code>.</p>
        <hr>
        <h3>Form validation</h3>
        <p>It also includes validation styles for errors, warnings, and success. To use, add the a class to the surrounding <code>.control-group</code>.</p>
1155
1156
1157
<pre class="prettyprint linenums">
&lt;fieldset
  class="control-group error"&gt;
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
  ...
&lt;/fieldset&gt;
</pre>
      </div>
    </div>
  </div>

  <br>

  <div class="row">
    <div class="span8">
1169
      <form class="form-horizontal">
1170
        <legend>Extending form controls</legend>
1171
1172
1173
1174
1175
1176
1177
1178
1179
        <fieldset class="control-group">
          <label class="control-label">Form sizes</label>
          <div class="controls docs-input-sizes">
            <input class="span2" type="text" name="" placeholder=".span2">
            <input class="span3" type="text" name="" placeholder=".span3">
            <input class="span4" type="text" name="" placeholder=".span4">
            <p class="help-block">Use the same <code>.span*</code> classes from the grid system for input sizes.</p>
          </div>
        </fieldset>
1180
1181
1182
1183
1184
        <fieldset class="control-group">
          <label class="control-label" for="prependedInput">Prepended text</label>
          <div class="controls">
            <div class="input-prepend">
              <span class="add-on">@</span>
1185
              <input class="span2" id="prependedInput" name="prependedInput" size="16" type="text">
1186
1187
1188
1189
1190
1191
1192
1193
            </div>
            <p class="help-block">Here's some help text</p>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="appendedInput">Appended text</label>
          <div class="controls">
            <div class="input-append">
1194
              <input class="span2" id="appendedInput" name="appendedInput" size="16" type="text">
1195
1196
1197
1198
1199
              <span class="add-on">.00</span>
            </div>
            <p class="help-block">Here's more help text</p>
          </div>
        </fieldset>
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
        <fieldset class="control-group">
          <label class="control-label" for="inlineCheckboxes">Inline checkboxes</label>
          <div class="controls">
            <label class="checkbox inline">
              <input type="checkbox" name="inlineCheckbox1" value="option1"> 1
            </label>
            <label class="checkbox inline">
              <input type="checkbox" name="inlineCheckbox1" value="option1"> 2
            </label>
            <label class="checkbox inline">
              <input type="checkbox" name="inlineCheckbox1" value="option1"> 3
            </label>
          </div>
        </fieldset>
1214
1215
1216
        <fieldset class="control-group">
          <label class="control-label" for="optionsCheckboxes">Checkboxes</label>
          <div class="controls">
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
            <label class="checkbox">
              <input type="checkbox" name="optionsCheckboxes" value="option1">
              Option one is this and that&mdash;be sure to include why it’s great
            </label>
            <label class="checkbox">
              <input type="checkbox" name="optionsCheckboxes" value="option2">
              Option two can also be checked and included in form results
            </label>
            <label class="checkbox">
              <input type="checkbox" name="optionsCheckboxes" value="option3">
              Option three can&mdash;yes, you guessed it&mdash;also be checked and included in form results
            </label>
1229
1230
1231
1232
1233
1234
            <p class="help-text"><strong>Note:</strong> Labels surround all the options for much larger click areas and a more usable form.</p>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="optionsRadios">Radio buttons</label>
          <div class="controls">
1235
1236
1237
1238
1239
1240
            <label class="radio">
              <input type="radio" checked name="optionsRadios" value="option1">
              Option one is this and that&mdash;be sure to include why it’s great
            </label>
            <label class="radio">
              <input type="radio" name="optionsRadios" value="option2">
1241
              Option two can is something else and selecting it will deselect option one
1242
            </label>
1243
1244
1245
1246
1247
1248
1249
1250
          </div>
        </fieldset>
        <fieldset class="form-actions">
          <button type="submit" class="btn primary">Save changes</button>
          <button type="reset" class="btn">Cancel</button>
        </fieldset>
      </form>
    </div>
1251
1252
1253
1254
1255
1256
1257
    <div class="span4">
      <div class="form-docs">
        <h3>Prepend &amp; append inputs</h3>
        <p>Input groups&mdash;with appended or prepended text&mdash;provide an easy way to give more context for your inputs. Great examples include the @ sign for Twitter usernames or $ for finances.</p>
        <hr>
        <h3>Checkboxes and radios</h3>
        <p>Up to v1.4, Bootstrap required extra markup around checkboxes and radios to stack them. Now, it's a simple matter of repeating the <code>&lt;label class="checkbox"&gt;</code> that wraps the <code>&lt;input type="checkbox"&gt;</code>.</p>
1258
        <p>Inline checkboxes and radios are also supported. Just add <code>.inline</code> to any <code>.checkbox</code> or <code>.radio</code> and you're done.</p>
1259
      </div>
1260
1261
    </div>
  </div><!-- /row -->
1262
</section>
1263

1264
1265


1266
1267
1268
1269
<section id="buttons">
  <div class="page-header">
    <h1>Buttons</h1>
  </div>
1270
  <table class="table table-bordered table-striped">
1271
1272
    <thead>
      <tr>
Mark Otto's avatar
Mark Otto committed
1273
        <th>Button</th>
1274
1275
1276
1277
1278
1279
        <th>Class</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
Mark Otto's avatar
Mark Otto committed
1280
        <td><a class="btn" href="#">Default</a></td>
1281
1282
1283
1284
        <td><code>.btn</code></td>
        <td>Standard gray button with gradient</td>
      </tr>
      <tr>
Mark Otto's avatar
Mark Otto committed
1285
        <td><a class="btn primary" href="#">Primary</a></td>
1286
        <td><code>.primary</code></td>
1287
        <td>Provides extra visual weight and identifies the primary action in a set of buttons</td>
1288
1289
      </tr>
      <tr>
Mark Otto's avatar
Mark Otto committed
1290
        <td><a class="btn info" href="#">Info</a></td>
1291
1292
1293
1294
        <td><code>.info</code></td>
        <td>Used as an alternate to the default styles</td>
      </tr>
      <tr>
Mark Otto's avatar
Mark Otto committed
1295
        <td><a class="btn success" href="#">Success</a></td>
1296
        <td><code>.success</code></td>
1297
        <td>Indicates a successful or positive action</td>
1298
1299
      </tr>
      <tr>
Mark Otto's avatar
Mark Otto committed
1300
        <td><a class="btn danger" href="#">Danger</a></td>
1301
        <td><code>.danger</code></td>
1302
        <td>Indicates a dangerous or potentially negative action</td>
1303
1304
1305
1306
      </tr>
    </tbody>
  </table>

1307
  <div class="row">
1308
1309
1310
    <div class="span4">
      <h3>Buttons for actions</h3>
      <p>As a convention, buttons should only be used for actions while hyperlinks are to be used for objects. For instance, "Download" should be a button while "recent activity" should be a link.</p>
1311
    </div>
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
    <div class="span4">
      <h3>For anchors and forms</h3>
      <p>Button styles can be applied to anything with the <code>.btn</code> applied. However, typically you’ll want to apply these to only <code>&lt;a&gt;</code> and <code>&lt;button&gt;</code> elements.</p>
    </div>
    <div class="span4">
      <p><strong>Note:</strong> All buttons must include the <code>.btn</code> class. Button styles should be applied to <code>&lt;button&gt;</code> and <code>&lt;a&gt;</code> elements for consistency.</p>
    </div>
  </div>

  <div class="row">
    <div class="span4">
      <h3>Multiple sizes</h3>
1324
      <p>Fancy larger or smaller buttons? Have at it!</p>
1325
      <p>
1326
1327
        <a href="#" class="btn large primary">Primary action</a>
        <a href="#" class="btn large">Action</a>
1328
1329
      </p>
      <p>
1330
1331
        <a href="#" class="btn small primary">Primary action</a>
        <a href="#" class="btn small">Action</a>
1332
1333
1334
      </p>
    </div>
    <div class="span8">
1335
1336
      <h3>Disabled state</h3>
      <p>For buttons that are not active or are disabled by the app for one reason or another, use the disabled state. That’s <code>.disabled</code> for links and <code>:disabled</code> for <code>&lt;button&gt;</code> elements.</p>
1337
      <p>
1338
1339
        <a href="#" class="btn large primary disabled">Primary action</a>
        <a href="#" class="btn large disabled">Action</a>
1340
1341
      </p>
      <p>
1342
        <button class="btn large primary disabled" disabled="disabled">Primary action</button>&nbsp;<button class="btn large" disabled>Action</button>
1343
      </p>
1344
    </div>
1345
  </div>
1346

1347
1348
  <br>

1349
1350
1351
</section>


1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449

<!-- Icons
================================================== -->
<section id="icons">
  <div class="page-header">
    <h1>Icons <small>Graciously provided by <a href="http://glyphicons.com" target="_blank">Glyphicons</a></small></h1>
  </div>
  <div class="row">
    <div class="span2">
      <div class="the-icons">
        <i class="glass"></i>
        <i class="music"></i>
        <i class="search"></i>
        <i class="envelope"></i>
        <i class="heart"></i>
        <i class="star"></i>
        <i class="star-empty"></i>
        <i class="user"></i>
        <i class="film"></i>
        <i class="th-large"></i>
        <i class="th"></i>
        <i class="th-list"></i>
        <i class="ok"></i>
        <i class="remove"></i>
        <i class="zoom-in"></i>
        <i class="zoom-out"></i>
        <i class="off"></i>
        <i class="signal"></i>
        <i class="cog"></i>
        <i class="trash"></i>
      </div>
    </div>
    <div class="span2">
      <div class="the-icons">
        <i class="home"></i>
        <i class="file"></i>
        <i class="time"></i>
        <i class="road"></i>
        <i class="download-alt"></i>
        <i class="download"></i>
        <i class="upload"></i>
        <i class="inbox"></i>
        <i class="play-circle"></i>
        <i class="repeat"></i>
        <i class="refresh"></i>
        <i class="calendar"></i>
        <i class="lock"></i>
        <i class="flag"></i>
        <i class="headphones"></i>
        <i class="volume-off"></i>
        <i class="volume-down"></i>
        <i class="volume-up"></i>
        <i class="qrcode"></i>
        <i class="barcode"></i>
      </div>
    </div>
    <div class="span2">
      <div class="the-icons">
        <i class="tag"></i>
        <i class="tags"></i>
        <i class="book"></i>
        <i class="bookmark"></i>
        <i class="print"></i>
        <i class="camera"></i>
        <i class="font"></i>
        <i class="bold"></i>
        <i class="italic"></i>
        <i class="text-height"></i>
        <i class="text-width"></i>
        <i class="align-left"></i>
        <i class="align-center"></i>
        <i class="align-right"></i>
        <i class="align-justify"></i>
        <i class="list"></i>
        <i class="indent-left"></i>
        <i class="indent-right"></i>
        <i class="facetime-video"></i>
        <i class="picture"></i>
      </div>
    </div>
    <div class="span2">
      <div class="the-icons">
        <i class="pencil"></i>
        <i class="map-marker"></i>
        <i class="adjust"></i>
        <i class="tint"></i>
        <i class="edit"></i>
        <i class="share"></i>
        <i class="check"></i>
        <i class="move"></i>
        <i class="step-backward"></i>
        <i class="fast-backward"></i>
        <i class="backward"></i>
        <i class="play"></i>
        <i class="pause"></i>
        <i class="stop"></i>
        <i class="forward"></i>
        <i class="fast-forward"></i>
Mark Otto's avatar
Mark Otto committed
1450
        <i class="step-forward"></i>
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
        <i class="eject"></i>
        <i class="chevron-left"></i>
        <i class="chevron-right"></i>
      </div>
    </div>
    <div class="span2">
      <div class="the-icons">
        <i class="arrow-left"></i>
        <i class="arrow-right"></i>
        <i class="arrow-up"></i>
        <i class="arrow-down"></i>
Jacob Thornton's avatar
Jacob Thornton committed
1462
        <i class="share-alt"></i>
1463
1464
1465
1466
1467
1468
1469
        <i class="resize-full"></i>
        <i class="resize-small"></i>
        <i class="plus"></i>
        <i class="minus"></i>
        <i class="asterisk"></i>
      </div>
    </div>
1470
1471
1472
    <div class="span2">
      <p class="muted">Light red background color is only used to show the dimensions of the icons in the docs.</p>
    </div>
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
  </div>

  <br>

  <div class="row">
    <div class="span4">
      <h3>Built as a sprite</h3>
      <p>Instead of making every icon an extra request, we've compiled them into a sprite&mdash;a bunch of images in one file that uses CSS to position the images with <code>background-position</code>. This is the same method we use on Twitter.com and it has worked well for us.</p>
      <p><a href="http://glyphicons.com" target="_blank">Glyphicons</a> has granted us use of the Halflings set in our open-source toolkit so long as we provide a link and credit. Please consider doing the same in your projects.</p>
    </div>
    <div class="span4">
      <h3>How to use</h3>
      <p>With v2.0.0, the <code>&lt;i&gt;</code> tag is essentially dedicated to iconography. To use the icons, you can place the follow code wherever you like one to appear:</p>
1486
<pre class="prettyprint linenums">
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
&lt;i class="chevron-left"&gt;&lt;/i&gt;
</pre>
      <p>There are over 100 classes to choose from for your icons. Just add an <code>&lt;i&gt;</code> tag with the right class and you're set. You can find the full list in sprites.less or right here in this document.</p>
    </div>
    <div class="span4">
      <h3>Use cases</h3>
      <p>Icons are great, but where would one use them? Here are a few ideas:</p>
      <ul>
        <li>As visuals for your sidebar navigation</li>
        <li>For a purely icon-driven nav</li>
        <li>For buttons to help convey the meaning of an action</li>
        <li>With links to share context on a user's destination</li>
      </ul>
      <p>Essentially, anywhere you can put an <code>&lt;i&gt;</code> tag, you can put an icon.</p>
    </div>
  </div>
1503
1504

  <h3>Examples</h3>
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
  <div class="row">
    <div class="span4">
      <p>Use them in buttons, or in button groups for a toolbar style presentation.</p>
      <p>
        <a class="btn" href="#"><i class="refresh"></i> Refresh</a>
        <a class="btn" href="#"><i class="cog"></i> Settings</a>
      </p>
      <div class="btn-toolbar">
        <div class="btn-group">
          <a class="btn" href="#"><i class="font"></i></a>
          <a class="btn" href="#"><i class="bold"></i></a>
          <a class="btn" href="#"><i class="italic"></i></a>
        </div>
        <div class="btn-group">
          <a class="btn" href="#"><i class="align-left"></i></a>
          <a class="btn" href="#"><i class="align-center"></i></a>
          <a class="btn" href="#"><i class="align-right"></i></a>
          <a class="btn" href="#"><i class="align-justify"></i></a>
        </div>
      </div>
    </div>
    <div class="span3">
      <p>Or, use them in navigation.</p>
1528
1529
1530
1531
1532
      <div class="well" style="padding: 8px 0;">
        <ul class="nav list">
          <li class="active"><a href="#"><i class="home"></i> Home</a></li>
          <li><a href="#"><i class="book"></i> Library</a></li>
          <li><a href="#"><i class="pencil"></i> Applications</a></li>
1533
        </ul>
1534
      </div> <!-- /well -->
1535
1536
    </div>
  </div>
1537
</section>
1538
1539
1540
1541
      <!-- Footer
      ================================================== -->
      <footer class="footer">
        <p class="pull-right"><a href="#">Back to top</a></p>
Mark Otto's avatar
Mark Otto committed
1542
1543
1544
        <p>Designed and built with all the love in the world <a href="http://twitter.com/twitter" target="_blank">@twitter</a> by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p>
        <p>Code licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>. Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
        <p>Icons from <a href="http://glyphicons.com">Glyphicons Free</a>, licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
1545
      </footer>
1546

1547
1548
    </div><!-- /container -->

1549

1550
1551
    <!-- Le javascript -->
    <!-- Placed at the end of the document so the pages load faster -->
1552
1553
    <!-- <script src="http://code.jquery.com/jquery-1.7.min.js"></script> -->
    <script src="../js/tests/vendor/jquery.js"></script>
1554
    <script src="assets/js/google-code-prettify/prettify.js"></script>
1555
1556
1557
    <script src="../js/bootstrap-transition.js"></script>
    <script src="../js/bootstrap-alert.js"></script>
    <script src="../js/bootstrap-modal.js"></script>
1558
    <script src="../js/bootstrap-dropdown.js"></script>
1559
1560
1561
1562
1563
1564
1565
1566
1567
    <script src="../js/bootstrap-scrollspy.js"></script>
    <script src="../js/bootstrap-tab.js"></script>
    <script src="../js/bootstrap-tooltip.js"></script>
    <script src="../js/bootstrap-popover.js"></script>
    <script src="../js/bootstrap-button.js"></script>
    <script src="../js/bootstrap-collapse.js"></script>
    <script src="../js/bootstrap-carousel.js"></script>
    <script src="../js/bootstrap-typeahead.js"></script>
    <script src="assets/js/application.js"></script>
1568
1569
  </body>
</html>
For faster browsing, not all history is shown. View entire blame