|
From: <tre...@us...> - 2007-09-02 17:22:58
|
Revision: 333
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=333&view=rev
Author: trevorolio
Date: 2007-09-02 10:22:56 -0700 (Sun, 02 Sep 2007)
Log Message:
-----------
Changed the name of ContextMenuInfo to ContextMenuItemInfo (for some reason) which required changes in: Java classes which are used in the script contexts, all of the javascripts that create said objects, and the ContextMenu[Item]Info classes themselves.
Modified Paths:
--------------
maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/TestCube.js
Modified: maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/TestCube.js
===================================================================
--- maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/TestCube.js 2007-09-02 17:22:49 UTC (rev 332)
+++ maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/TestCube.js 2007-09-02 17:22:56 UTC (rev 333)
@@ -17,9 +17,9 @@
}
function onContextClick(person, shapeName){
- var moveItem = new ContextMenuInfo("Move",true,"move");
- var monkeyItem = new ContextMenuInfo("Monkey", true, "monkey");
- var deadItem = new ContextMenuInfo("Groove",false,"groove");
+ var moveItem = new ContextMenuItemInfo("Move",true,"move");
+ var monkeyItem = new ContextMenuItemInfo("Monkey", true, "monkey");
+ var deadItem = new ContextMenuItemInfo("Groove",false,"groove");
return new Array(moveItem, monkeyItem, deadItem);
}
@@ -29,4 +29,4 @@
function onService(){
return new HTTPResponse(200, "monkey", "text/plain");
-}
\ No newline at end of file
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|