Author: jablko
Date: Mon Oct 18 16:22:04 2010
New Revision: 8247
Log:
Fix syntax error
Modified:
trunk/js/dialog.js
Modified: trunk/js/dialog.js
==============================================================================
--- trunk/js/dialog.js Mon Oct 18 16:19:11 2010 (r8246)
+++ trunk/js/dialog.js Mon Oct 18 16:22:04 2010 (r8247)
@@ -311,11 +311,11 @@
}
}
- dataSource.sendRequest(null, function (request, response)
- {
- success: thisDialog.updateDialog(id, response.results[0],
callback);
- failure: null;
- });
+ dataSource.sendRequest(null, {
+ success: function (request, response)
+ {
+ thisDialog.updateDialog(id, response.results[0], callback);
+ } });
}
}
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.