Lines Matching refs:content
86 html: function(content, params) { argument
87 if (content === undefined) return els.content;
94 if (typeof(content) == 'string') els.content.innerHTML = content;
95 else els.content.appendChild(content);
109 …offset.wrapper = [els.wrapper.offsetWidth-els.content.offsetWidth, els.wrapper.offsetHeight-els.co…
119 els.content.style.height = '100%';
120 var height = els.content.offsetHeight + 12;
121 els.content.style.height = '';
129 showTags(_pub.tags_to_hide[i], els.content);
140 while (els.content.firstChild) els.content.removeChild(els.content.firstChild);
212 els.content.style.height = height + 'px';
215 els.wrapper.style.height = els.content.offsetHeight + offset.wrapper[1] + 'px';
218 els.wrapper.style.height = els.content.offsetHeight + offset.wrapper[1] + 'px';
220 var container_offset = (els.content.offsetHeight - els.content.firstChild.offsetHeight);
226 els.content.style.width = width + 'px';
227 els.wrapper.style.width = els.content.offsetWidth + offset.wrapper[0] + 'px';
230 _pub.updateObject(els.content.style, {width: '', height: ''});
257 els.content.style.height = height - offset.wrapper[1] + 'px';
553 els.content = document.createElement('div');
554 els.content.id = 'ibox_content';
555 _pub.updateObject(els.content.style, {overflow: 'auto'})
556 els.wrapper.appendChild(els.content);