geonetwork.js.svn-base

来自「由国外的一个著名的geonetwork修改而来」· SVN-BASE 代码 · 共 78 行

SVN-BASE
78
字号
// VARIABLE DECLARATIONSfunction init() {}// New browser windows	function popNew(a)	{		msgWindow=window.open(a,"displayWindow","location=no, toolbar=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600")		msgWindow.focus()	}	function openPage(what,type)	{		msgWindow=window.open(what,type,"location=yes, toolbar=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, width=800, height=600")		msgWindow.focus()	}	function popFeedback(a)	{		msgWindow=window.open(a,"feedbackWindow","location=no, toolbar=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600")		msgWindow.focus()	}	function popWindow(a)	{		msgWindow=window.open(a,"popWindow","location=no, toolbar=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600")		msgWindow.focus()	}	function popInterMap(a)	{		msgWindow=window.open(a,"InterMap","location=no, toolbar=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600")		msgWindow.focus()	}// Forms	function goSubmit(form_name) {		document.forms[form_name].submit();	}	function goReset(form_name)	{		document.forms[form_name].reset();	}	function entSub(form_name) {		if (window.event && window.event.keyCode == 13)			goSubmit(form_name);		else			return true;	}    // Navigation	function goBack()	{		history.back();	}	function processCancel() {		document.close();	}	function load(url)	{		document.location.href = url;	}	function doConfirm(url, message)	{		if(confirm(message))		{			load(url);			return true;		}		return false;	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?