- #678: PlUpload filename detection -FRU
* Profile:
- - #663: Link to Xnet's map from the "My groups" page -FRU
- Fix GoogleMaps links -FRU
+ - #663: Link to Xnet's map from the "My groups" page -FRU
+ - #689: Edit my profile from Xnet -FRU
From 0.9.14 branch:
"$1?display=light&$2$3");
}
if(node.className == 'popup2') {
- node.onclick = function () { popWin(this,840,600); return false; };
+ node.onclick = function () { popWin(this,840,600); return false; };
}
- if(node.className == 'popup3') {
- node.onclick = function () { popWin(this, 640, 800); 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; };
{
strPage = platal_baseurl + strPage;
if (parent.opener) {
- parent.opener.document.location = strPage;
- window.close();
+ try {
+ parent.opener.document.location = strPage;
+ window.close();
+ } catch(e) {
+ window.open(strPage);
+ }
} else {
document.location = strPage;
}