Commit b12826f9c933259e5c131f704df4c00240ba34c5
1 parent
f66137f8
controllets and base datatel behavior update
Showing
2 changed files
with
5 additions
and
5 deletions
controllets/animated-button-container-controllet/animated-button-container-controllet.html
controllets/create-card-controllet/create-card-controllet.html
... | ... | @@ -123,12 +123,12 @@ |
123 | 123 | </div> |
124 | 124 | |
125 | 125 | <paper-material animated elevation="2"> |
126 | - <paper-textarea class="custom_textarea" id="title" | |
126 | + <paper-textarea class="custom_textarea" id="cardTitle" | |
127 | 127 | label="" |
128 | 128 | char-counter |
129 | 129 | maxlength="30" |
130 | 130 | rows="1" |
131 | - value="{{title}}"> | |
131 | + value="{{cardTitle}}"> | |
132 | 132 | |
133 | 133 | </paper-textarea> |
134 | 134 | </paper-material> |
... | ... | @@ -223,7 +223,7 @@ |
223 | 223 | value: "text" |
224 | 224 | }, |
225 | 225 | |
226 | - title:{ | |
226 | + cardTitle:{ | |
227 | 227 | type: String, |
228 | 228 | value: "Title", |
229 | 229 | observer : '_valueChanged' |
... | ... | @@ -269,7 +269,7 @@ |
269 | 269 | ' height="300"' + |
270 | 270 | ' card-type="'+ this.type + '"' + |
271 | 271 | ' comment="'+ this.comment + '"' + |
272 | - ' card-title="'+ this.title + '">'; | |
272 | + ' card-title="'+ this.cardTitle + '">'; | |
273 | 273 | if(this.type == 'link'){ |
274 | 274 | card += '<preview-datalet data-url="'+ this.link + '" url="'+ this.link + '"></preview-datalet>'; |
275 | 275 | }else{ | ... | ... |