uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js
author fturovic <frank.turovich@nokia.com>
Mon, 13 Jul 2009 14:16:23 -0500
changeset 364 d4bc15911a2c
parent 0 fb279309251b
permissions -rw-r--r--
updated bug fixes for final 2.1


var gCounter = 23

function Base() {
	this.counter = gCounter
	gCounter *= 2
}

Base.prototype.fiddle = function() { return this.counter; }
Base.prototype.faddle = function() { return this.counter; }