I'm using some existing code and there is this line I don't understand. I only know that default can be used as part of a swtich statement, but didn't know if there is some other use for it. The code works. It's part of TurkIt which is used for running programs through Amazon's MTurk.
function getQuestion(numA, numB) {
default xml namespace = "http://mechanicalturk.amazonaws.com/AWSMechanicalTurkDataSchemas/2005-10-01/QuestionForm.xsd";
var q = <QuestionForm> ...
See the default before the xml namespace statement.
_betweendefault,xmlandnamespace? – ZenMaster Oct 30 '11 at 19:12SyntaxErroras well, if this works at all it's because it's being transformed to real javascript not being run as is. – Esailija Oct 30 '11 at 19:14invalid default XML namespacehere, which implies there is something going on, maybe Firefox-specific? – Jared Farrish Oct 30 '11 at 19:21