URL => Url, ID => Id in coffee script.

This commit is contained in:
Cheng Zhao 2013-05-03 15:21:41 +08:00
parent 9b75019898
commit 42f10a15d5
3 changed files with 7 additions and 7 deletions

View file

@ -50,8 +50,8 @@ ipc.on 'ATOM_BROWSER_CURRENT_WINDOW', (event, processId, routingId) ->
try
windows = objectsRegistry.getAllWindows()
for window in windows
break if window.getProcessID() == processId and
window.getRoutingID() == routingId
break if window.getProcessId() == processId and
window.getRoutingId() == routingId
event.result = new Meta(processId, routingId, window)
catch e
event.result = type: 'error', value: e.message