-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathgoogle-jsapi.html
More file actions
31 lines (27 loc) · 1.16 KB
/
google-jsapi.html
File metadata and controls
31 lines (27 loc) · 1.16 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
<!--
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../bower_components/core-shared-lib/core-shared-lib.html">
<!--
Dynamically loads the legacy Google JavaScript API Loader (https://developers.google.com/loader/),
firing the `api-load` event when ready.
Any number of components can use `<google-jsapi>` elements, and the library will only be loaded once.
@element google-jsapi
-->
<polymer-element name="google-jsapi" extends="core-shared-lib">
<script>
Polymer({
defaultUrl: '//maps.dushu.hu/jsapi?callback=%%callback%%',
notifyEvent: 'api-load',
get api() {
return google;
}
});
</script>
</polymer-element>