uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/twice.js
author dadubrow
Thu, 24 Sep 2009 08:11:04 -0500
branchRCL_2_2
changeset 511 b58712054172
parent 0 fb279309251b
permissions -rw-r--r--
fix capitalization


var gCounter = 23

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

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