Commit 21c4567b278bad5d47638f78bf6648e269ec2f17

Authored by Renato De Donato
1 parent a7d52488

path

controllets/animated-button-container-controllet/animated-button-container-controllet.html
... ... @@ -150,8 +150,6 @@
150 150  
151 151 ready: function(){
152 152 $(this.$.container_content).perfectScrollbar();
153   - console.log(this.tooltip);
154   - console.log(this.pluginKey);
155 153 },
156 154  
157 155 _onOpenClick: function() {
... ...
controllets/fullsize-page-with-card-controllet/fullsize-page-with-card-controllet.html
... ... @@ -38,7 +38,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
38 38 <div id="fixed" class="fixed" style$="background-color:{{color}}"></div>
39 39 <div id="card" class="card" style$="background-color:{{color}}">
40 40 <template is="dom-if" if="{{_checkUndefined(publicRoom)}}">
41   - <iframe id="public_room_iframe" src="/public-room/{{publicRoom}}" width="100%" height="100%"></iframe>
  41 + <iframe id="public_room_iframe" src="public-room/{{publicRoom}}" width="100%" height="100%"></iframe>
42 42 </template>
43 43 </div>
44 44  
... ...
controllets/generic-cards-container-controllet/generic-cards-container-controllet.html
... ... @@ -150,10 +150,10 @@ Example:
150 150 var _this = this;
151 151 var cards = document.querySelectorAll('paper-card-controllet');
152 152  
153   - if(cards.length == 0){
154   -
155   - this.$.card_grid.innerHTML += "<div class='empty'>There is nothing to show.</div>";
156   - }
  153 +// if(cards.length == 0){
  154 +//
  155 +// this.$.card_grid.innerHTML += "<div class='empty'>There is nothing to show.</div>";
  156 +// }
157 157  
158 158 for(var i = 0; i < cards.length; i++){
159 159 cards[i].addEventListener('click', function(e){
... ...