[moblab] Get third party js/css libraries from localhost

Load jquery, handlerbars libraries from localhost instead of from
CDN to allow mobmonitor to be accessed on the moblab device even
without network connectivity.

BUG=chromium:815274
TEST=Test on local moblab device, both with and without network
connectivity. Verified that mobmonitor page still loads.
CQ-DEPEND=CL:939644

Change-Id: I3e59e7376c41fc3456f779122ff20ba87e9f1624
Reviewed-on: https://chromium-review.googlesource.com/937942
Commit-Ready: Matt Mallett <mattmallett@chromium.org>
Tested-by: Matt Mallett <mattmallett@chromium.org>
Reviewed-by: Keith Haddow <haddowk@chromium.org>
diff --git a/src/mobmonitor/static/templates/index.html b/src/mobmonitor/static/templates/index.html
index 7365389..7387d69 100644
--- a/src/mobmonitor/static/templates/index.html
+++ b/src/mobmonitor/static/templates/index.html
@@ -2,10 +2,10 @@
   <head>
     <title>Mob* Monitor</title>
     <link href="/static/css/style.css" rel="stylesheet">
-    <link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet">
-    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
-    <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
-    <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.js"></script>
+    <link href="/static/third_party/jquery-ui/1.11.4/jquery-ui.css" rel="stylesheet">
+    <script src="/static/third_party/jquery/2.1.3/jquery.min.js"></script>
+    <script src="/static/third_party/jquery-ui/1.11.4/jquery-ui.min.js"></script>
+    <script src="/static/third_party/handlebars.js/3.0.3/handlebars.min-v3.0.3.js"></script>
     <script src="/static/js/util.js"></script>
     <script src="/static/js/template.js"></script>
     <script src="/static/js/rpc.js"></script>