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,12 +123,12 @@ | ||
123 | </div> | 123 | </div> |
124 | 124 | ||
125 | <paper-material animated elevation="2"> | 125 | <paper-material animated elevation="2"> |
126 | - <paper-textarea class="custom_textarea" id="title" | 126 | + <paper-textarea class="custom_textarea" id="cardTitle" |
127 | label="" | 127 | label="" |
128 | char-counter | 128 | char-counter |
129 | maxlength="30" | 129 | maxlength="30" |
130 | rows="1" | 130 | rows="1" |
131 | - value="{{title}}"> | 131 | + value="{{cardTitle}}"> |
132 | 132 | ||
133 | </paper-textarea> | 133 | </paper-textarea> |
134 | </paper-material> | 134 | </paper-material> |
@@ -223,7 +223,7 @@ | @@ -223,7 +223,7 @@ | ||
223 | value: "text" | 223 | value: "text" |
224 | }, | 224 | }, |
225 | 225 | ||
226 | - title:{ | 226 | + cardTitle:{ |
227 | type: String, | 227 | type: String, |
228 | value: "Title", | 228 | value: "Title", |
229 | observer : '_valueChanged' | 229 | observer : '_valueChanged' |
@@ -269,7 +269,7 @@ | @@ -269,7 +269,7 @@ | ||
269 | ' height="300"' + | 269 | ' height="300"' + |
270 | ' card-type="'+ this.type + '"' + | 270 | ' card-type="'+ this.type + '"' + |
271 | ' comment="'+ this.comment + '"' + | 271 | ' comment="'+ this.comment + '"' + |
272 | - ' card-title="'+ this.title + '">'; | 272 | + ' card-title="'+ this.cardTitle + '">'; |
273 | if(this.type == 'link'){ | 273 | if(this.type == 'link'){ |
274 | card += '<preview-datalet data-url="'+ this.link + '" url="'+ this.link + '"></preview-datalet>'; | 274 | card += '<preview-datalet data-url="'+ this.link + '" url="'+ this.link + '"></preview-datalet>'; |
275 | }else{ | 275 | }else{ |