Changeset - ace07d2e971f
[Not reviewed]
default
0 1 0
Drew Perttula - 9 years ago 2016-05-30 20:59:42
drewp@bigasterisk.com
don't use 'this' as an attribute name
Ignore-this: 498ade272028afa2e03fdefa982826f
1 file changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
light9/web/live.html
Show inline comments
 
@@ -23,11 +23,12 @@
 
               properties: {
 
                   status: {type: String, value: 'init'},
 
                   clientSession: {value: ""+Date.now()},
 
                   this: {type: Object, notify: true}
 
                   self: {type: Object, notify: true}
 
               },
 
               ready: function() {
 
                   this.self = this;
 
                   var self = this;
 
                   self.this = self;
 
                   
 
                   self.$.put.addEventListener(
 
                       'error', function() { self.status = 'err'; });
 
                   self.$.put.addEventListener(
 
@@ -111,7 +112,7 @@
 
      <template>
 
        <style>
 
        </style>
 
        <light9-collector-client this="{{client}}"></light9-collector-client>
 
        <light9-collector-client self="{{client}}"></light9-collector-client>
 
        <h1>live</h1>
 

	
 
        <ul>
0 comments (0 inline, 0 general)