X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=htdocs%2Fjavascript%2Fxorg.js;h=7fcd6f02184a26fdb97d2175fca0d6c81849c476;hb=311bc3ad57fea21b4463a6d8fa96737b2ec0d3c1;hp=721ec59b9067f8cd8659e27fa749e663eb26d357;hpb=a27c6df82cc462aedf70ffeced99c8e187faa9e4;p=platal.git diff --git a/htdocs/javascript/xorg.js b/htdocs/javascript/xorg.js index 721ec59..7fcd6f0 100644 --- a/htdocs/javascript/xorg.js +++ b/htdocs/javascript/xorg.js @@ -153,6 +153,9 @@ function auto_links() { if(node.className == 'popup2') { node.onclick = function () { popWin(this,840,600); return false; }; } + if(node.className == 'popup3') { + node.onclick = function () { popWin(this, 640, 800); return false; }; + } if(matches = (/^popup_([0-9]*)x([0-9]*)$/).exec(node.className)) { var w = matches[1], h = matches[2]; node.onclick = function () { popWin(this,w,h); return false; };