-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
70 lines (56 loc) · 2.01 KB
/
test.html
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
<!-- Polymer dependency -->
<link rel="import" href="../polymer/polymer.html">
<!-- External Polymer imports dependency -->
<link rel="import" href="../polymerfire/firebase.html">
<link rel="import" href="../polymerfire/firebase-app.html">
<link rel="import" href="../polymerfire/firebase-auth.html">
<!-- Style imports -->
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../iron-icons/iron-icons.html">
<!--
`<epiviz-workspace>` manages user workspaces.
To use, add `<epiviz-workspace>` in the page
<epiviz-workspace></epiviz-workspace>
@demo demo/index.html Example page showing a workspace element
-->
<dom-module id="test-fire">
<template>
<style>
:host {
}
</style>
<paper-button raised
on-tap="test">
Test
</paper-button>
</template>
<script>
Polymer({
/* Custom element html tag */
is: 'test-fire',
// behaviors: [],
/* Properties that can be defined on the element */
test: function() {
var rand = Math.random() * 100;
rand = Math.floor(rand);
this.fire("workspaceChanged", {
id: rand,
});
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(m) {
console.log(m.addedNodes[0])
});
});
var config = { attributes: true, childList: true, characterData: true };
observer.observe(document.body, config);
},
// Initialization that should happen or use FactoryImpl
// created: function() {},
/* callback function after the element is attached to the DOM */
attached: function() {
},
/* callback function after the element is initialized */
// ready: function() {}
});
</script>
</dom-module>