forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·73 lines (68 loc) · 3.81 KB
/
index.html
File metadata and controls
executable file
·73 lines (68 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>gcloud</title>
<meta name="description" content="Node idiomatic client for Google Cloud services.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://cloud.google.com/images/gcp-favicon.ico">
<link rel="stylesheet" href="site/css/normalize.css">
<link rel="stylesheet" href="site/css/main.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Sans+Mono|Roboto:300,400,700,700italic,400italic|Open+Sans:300">
<link rel="stylesheet" href="site/lib/highlight/github.min.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<main ng-view autoscroll="true"></main>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="//code.angularjs.org/1.2.23/angular-route.min.js"></script>
<script src="//code.angularjs.org/1.2.23/angular-sanitize.min.js"></script>
<script src="//pc035860.github.io/angular-highlightjs/angular-highlightjs.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/showdown/0.3.1/showdown.min.js"></script>
<script src="site/lib/highlight/highlight.min.js"></script>
<script src="site/lib/node-semver/semver.browser.js"></script>
<script src="site/lib/angular-markdown-directive/markdown.js"></script>
<script src="site/lib/momentjs/moment.min.js"></script>
<script src="site/home.js"></script>
<script src="site/components/docs/docs.js"></script>
<script src="site/components/docs/docs-directives.js"></script>
<script src="site/components/docs/docs-services.js"></script>
<script src="site/components/docs/docs-values.js"></script>
<script src="site/components/authorization/authorization.js"></script>
<script src="site/components/faq/faq.js"></script>
<script src="site/components/how-to-get-help/how-to-get-help-directive.js"></script>
<script src="site/components/language-switcher/language-switcher-directive.js"></script>
<script src="site/components/subpage/subpage-directive.js"></script>
<script src="site/components/header/header-directive.js"></script>
<script src="site/components/troubleshooting/troubleshooting.js"></script>
<script>
(function() {
var initInjector = angular.injector(['ng']);
var $http = initInjector.get('$http');
$http.get('versions.txt').then(
function (response) {
var trimmed = response.data.replace(/^\s+|\s+$/g, '');
var versions = trimmed.split("\n").reverse();
angular.module('config', []).constant('versions', versions);
angular.element(document).ready(function() {
angular.bootstrap(document, ['gcloud']);
});
}
);
})();
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49880327-13', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>