-
Notifications
You must be signed in to change notification settings - Fork 0
/
r-mini.html
94 lines (75 loc) · 1.79 KB
/
r-mini.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<polymer-element name="r-ruleset" >
<template>
<ul id="uu">
<content ></content>
</ul>
</template>
<script>
Polymer('r-ruleset', {
created: function() {
console.log('r-ruleset created');
},
ready: function() {
console.log("r-ruleset ready ");
},
enteredView: function() {
console.log("r-ruleset inserted");
},
});
</script>
</polymer-element>
<polymer-element name="r-a" attributes="operator openbracket closebracket javatype ">
<template>
<content></content>
</template>
<script>
Polymer('r-a', {
created: function() {
console.log('r-a created');
},
enteredView: function() {
console.log("r-a inserted");
},
});
</script>
</polymer-element>
<polymer-element name="r-b" attributes="value">
<template>
<content></content>
</template>
<script>
Polymer('r-b', {
created: function() {
console.log('r-b created');
},
enteredView: function() {
console.log("r-b inserted");
},
});
</script>
</polymer-element>
<polymer-element name="nb-ruleset" >
<template>
Here is the ruleset:
<r-ruleset >
AA: <r-a assignable="false" guid="VARBL13da1ea014fx24f2b"
name="clientId" type="int">
BB: <r-b closebracket="0" javatype="int" openbracket="0" operator="">
</r-b>
</r-a>
</r-ruleset>
</template>
<script>
Polymer('nb-ruleset', {
ready: function() {
console.log("nb-ruleset ready ");
},
enteredView: function() {
console.log("nb-ruleset inserted");
},
fooSignal: function(e, detail, sender) {
console.log("nb-ruleset got fooSignal ",detail, sender.id);
}
});
</script>
</polymer-element>