Closed peteruithoven closed 9 years ago
There are a couple of places where we use ['...'] for no good reason. Like:
svc.SetProperty['timeout'] = 10000; svc.SetProperty['error'] = callback || null; svc.SetProperty['finish'] = callback || null;
The recommended syntax is:
svc.SetProperty.timeout = 10000; svc.SetProperty.error = callback || null; svc.SetProperty.finish = callback || null;
There are a couple of places where we use ['...'] for no good reason. Like:
The recommended syntax is: