22 lines
798 B
XML
22 lines
798 B
XML
<?xml version="1.0"?>
|
|
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
|
|
|
|
<binding id="ellipsis" applyauthorstyles="false">
|
|
<implementation>
|
|
<constructor><![CDATA[
|
|
(function(block){
|
|
setTimeout(function(){
|
|
block.style.mozBinding = '';
|
|
var t = document.createElement('DIV');
|
|
block.appendChild(t);
|
|
block.appendChild(document.createElement('DIV'));
|
|
while (block.firstChild != t)
|
|
t.appendChild(block.firstChild);
|
|
block.className = block.className + ' moz-ellipsis';
|
|
}, 0);
|
|
})(this);
|
|
]]></constructor>
|
|
</implementation>
|
|
</binding>
|
|
|
|
</bindings> |