Показать сообщение отдельно
  #1 (permalink)  
Старый 04.08.2009, 15:19
Аспирант
Отправить личное сообщение для Ozerich Посмотреть профиль Найти все сообщения от Ozerich
 
Регистрация: 03.08.2009
Сообщений: 33

Проблема с модулем
Geometry.js
var Geometry = {};

if (window.screenLeft) { // IE and others
    Geometry.getWindowX = function() { return window.screenLeft; };
    Geometry.getWindowY = function() { return window.screenTop; };
}
else if (window.screenX) { // Firefox and others
    Geometry.getWindowX = function() { return window.screenX; };
    Geometry.getWindowY = function() { return window.screenY; };
}

index.html
<body>
		<script src="Geometry.js">
			var o=new Geometry();
			for(var cur in o)
			document.write(cur+" = "+o[cur]+"<br>");
		</script>
	</body>

В чем проблема?Как получить объект Geometry?
Ответить с цитированием