diff options
author | Corey Hulen <corey@hulen.com> | 2015-07-08 07:54:49 -0800 |
---|---|---|
committer | Corey Hulen <corey@hulen.com> | 2015-07-08 07:54:49 -0800 |
commit | 689692b22db1f746d23b6ceb5f7892227c5efb1e (patch) | |
tree | 24c77b2e43efbefae8eaa4745f6205337e2eefaf /web/templates/head.html | |
parent | 30e90a2155652aa6b1616c713f4b2b68b6193308 (diff) | |
parent | 9da9f62f44f6d07fb1cc73df4cccef5d4ff6e567 (diff) | |
download | chat-689692b22db1f746d23b6ceb5f7892227c5efb1e.tar.gz chat-689692b22db1f746d23b6ceb5f7892227c5efb1e.tar.bz2 chat-689692b22db1f746d23b6ceb5f7892227c5efb1e.zip |
Merge pull request #130 from hmhealey/staticjs
MM-1427 Copied required Javascript libraries and resources into repository
Diffstat (limited to 'web/templates/head.html')
-rw-r--r-- | web/templates/head.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/templates/head.html b/web/templates/head.html index 9c025d1f9..abcb30700 100644 --- a/web/templates/head.html +++ b/web/templates/head.html @@ -5,19 +5,19 @@ <title>{{ .Title }}</title> - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> + <link rel="stylesheet" href="/static/css/bootstrap-3.3.1.min.css"> <link rel="stylesheet" href="/static/css/jasny-bootstrap.min.css" rel="stylesheet"> - <script src="https://fb.me/react-with-addons-0.13.1.js"></script> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> - <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> + <script src="/static/js/react-with-addons-0.13.1.js"></script> + <script src="/static/js/jquery-1.11.1.js"></script> + <script src="/static/js/bootstrap-3.3.1.js"></script> <link id="favicon" rel="icon" href="/static/images/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="/static/images/favicon.ico" type="image/x-icon"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="/static/css/styles.css"> - <script src="/static/js/min/perfect-scrollbar.min.js"></script> + <script src="/static/js/perfect-scrollbar-0.6.3.jquery.js"></script> <script src="/static/js/bundle.js"></script> <script type="text/javascript" src="https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1','packages':['annotationchart']}]}"></script> |