Files
i2p.i2p-bote/WebContent/moz_fix2.xml
HungryHobo 1aa2bab082 Check in initial revision.
Contains a rudimentary Kademlia implementation, a rudimentary web frontend, implementations for some packet types, and a few unit tests.
Implemented functionality: Email Identity management, composing a text email and storing it in Kademlia.
Partially implemented: Retrieving new emails from Kademlia.
2009-11-22 23:32:16 +00:00

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>