uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/transientGlobals.js
author fturovic <frank.turovich@nokia.com>
Mon, 21 Jun 2010 14:52:39 -0500
changeset 1506 9ebb7e505267
parent 0 fb279309251b
permissions -rw-r--r--
added new images for import bld.inf page


function Proto () {
}

Proto.prototype = new Object()

function extra() {
	anotherglobal = 3;
}

Proto.prototype.myfunc = function() {
	var oo = inst;
	
	myglobal = 2;
	extra();
	
	this.foo = 3;
	
	globalString = "77" + globalString;
	return globalString;
}