bootstrap-sidebar icon indicating copy to clipboard operation
bootstrap-sidebar copied to clipboard

Fetch Bootstrap & jQuery from CDN

Open erasmus opened this issue 10 years ago • 0 comments

May I suggest that for the zip downloaded version that the files are fetched from CDN? Makes it easier for quick demo locally....

Demo.html:

  <head>
    <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
    <script src="dist/js/sidebar.js"></script>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" />
    <link rel="stylesheet" href="style.css" />
    <link rel="stylesheet" href="dist/js/sidebar.css"/>
  </head>

Index.html:

  <head>
    <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
    <script src="dist/js/sidebar.js"></script>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" />
    <link rel="stylesheet" href="style.css" />
    <link rel="stylesheet" href="dist/css/sidebar.css"/>
  </head>

erasmus avatar Jan 12 '15 10:01 erasmus