Commit 5d6adad47b29c00d3e412059eb9e9e1856a0b676

Authored by Luigi Serra
1 parent c76a9f85

card and controllet updates

controllets/paper-card-controllet/paper-card-controllet.html
... ... @@ -78,6 +78,7 @@
78 78 font-size: 10px;
79 79 color: rgba(0,0,0,0.4);
80 80 font-family: 'Roboto', sans-serif;
  81 + word-wrap: break-word;
81 82 }
82 83  
83 84 .delete{
... ...
datalets/base-datalet/base-datalet.html
... ... @@ -90,7 +90,9 @@ Example :
90 90 *
91 91 */
92 92 ready: function(){
93   - this.$.domain.textContent = this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];
  93 + if(this.dataUrl != undefined){
  94 + this.$.domain.textContent = this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];
  95 + }
94 96 },
95 97 /**
96 98 * Set the domain url to show in the footer
... ...