File tree 8 files changed +21
-7
lines changed
8 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ sudo: true
4
4
5
5
language : node_js
6
6
7
- node_js : node
7
+ node_js : stable
8
8
9
9
addons :
10
+ firefox : latest
10
11
apt :
11
12
sources :
12
13
- google-chrome
Original file line number Diff line number Diff line change 32
32
*
33
33
* Creates a Class mixin for decorating Elements with a given Redux store.
34
34
*
35
+ * @polymerMixin
36
+ *
35
37
* @param {Object } store Redux store.
36
38
* @return {Function } Class mixin.
37
39
*/
52
54
*
53
55
* @example
54
56
* const update = bind(el, props) // set bindings
55
- * update(state) // manuel update
57
+ * update(state) // manual update
56
58
*
57
59
* @private
58
60
* @param {HTMLElement } element
143
145
* const ReduxMixin = PolymerRedux(store)
144
146
* class Foo extends ReduxMixin(Polymer.Element) { }
145
147
*
148
+ * @polymerMixinClass
149
+ *
146
150
* @param {Polymer.Element } parent The polymer parent element.
147
151
* @return {Function } PolymerRedux mixed class.
148
152
*/
242
246
243
247
} ( ) ) ;
244
248
</ script >
249
+
Original file line number Diff line number Diff line change 1
- < script type ="text/javascript " src ="index.js "> </ script >
1
+ < script type ="text/javascript " src ="index.js "> </ script >
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ var Polymer = window_1.Polymer;
32
32
*
33
33
* Creates a Class mixin for decorating Elements with a given Redux store.
34
34
*
35
+ * @polymerMixin
36
+ *
35
37
* @param {Object } store Redux store.
36
38
* @return {Function } Class mixin.
37
39
*/
@@ -52,7 +54,7 @@ function PolymerRedux(store) {
52
54
*
53
55
* @example
54
56
* const update = bind(el, props) // set bindings
55
- * update(state) // manuel update
57
+ * update(state) // manual update
56
58
*
57
59
* @private
58
60
* @param {HTMLElement } element
@@ -143,6 +145,8 @@ function PolymerRedux(store) {
143
145
* const ReduxMixin = PolymerRedux(store)
144
146
* class Foo extends ReduxMixin(Polymer.Element) { }
145
147
*
148
+ * @polymerMixinClass
149
+ *
146
150
* @param {Polymer.Element } parent The polymer parent element.
147
151
* @return {Function } PolymerRedux mixed class.
148
152
*/
Original file line number Diff line number Diff line change 8
8
"build" : " gulp" ,
9
9
"pretest" : " npm run build && npm run lint" ,
10
10
"test" : " jest && polymer test" ,
11
- "lint" : " xo # && polymer lint --root=$(pwd)/lib"
11
+ "lint" : " xo && polymer lint --root=$(pwd)/lib"
12
12
},
13
13
"repository" : {
14
14
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ it's state and dispatch actions.
48
48
49
49
## Documentation
50
50
51
- See the documentation page: [ https://tur-nr.github.io/polymer-redux/docs ] ( https://tur-nr.github.io/polymer-redux/docs )
51
+ See the documentation page: [ https://tur-nr.github.io/polymer-redux/docs ] ( https://tur-nr.github.io/polymer-redux/docs ) .
52
52
53
53
## API
54
54
Original file line number Diff line number Diff line change 1
- < script type ="text/javascript " src ="index.js "> </ script >
1
+ < script type ="text/javascript " src ="index.js "> </ script >
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ const {CustomEvent, Polymer} = window;
9
9
*
10
10
* Creates a Class mixin for decorating Elements with a given Redux store.
11
11
*
12
+ * @polymerMixin
13
+ *
12
14
* @param {Object } store Redux store.
13
15
* @return {Function } Class mixin.
14
16
*/
@@ -117,6 +119,8 @@ export default function PolymerRedux(store) {
117
119
* const ReduxMixin = PolymerRedux(store)
118
120
* class Foo extends ReduxMixin(Polymer.Element) { }
119
121
*
122
+ * @polymerMixinClass
123
+ *
120
124
* @param {Polymer.Element } parent The polymer parent element.
121
125
* @return {Function } PolymerRedux mixed class.
122
126
*/
You can’t perform that action at this time.
0 commit comments