[ReactNative] Don't activate Chrome when debugger is already open

Summary:
Before this diff every time you reload in debug mode Chrome window
is actiavated. Looks like that behaviour is pretty annoying.

Fixes #689

@public

Test Plan:
```
$ ./packager/launchChromeDevTools.applescript 'https://www.facebook.com/'
```

First time it opens a new tab and activates Chrome, running this again does
not activate Chrome if the tab already exists.
This commit is contained in:
Alex Kotliarskyi 2015-06-19 14:19:17 -07:00
parent 4b9d5f8ad0
commit 85ac235691
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,6 @@ on run argv
set theURL to item 1 of argv set theURL to item 1 of argv
tell application "Chrome" tell application "Chrome"
activate
if (count every window) = 0 then if (count every window) = 0 then
make new window make new window
@ -40,6 +39,7 @@ on run argv
set theWindow's active tab index to theTabIndex set theWindow's active tab index to theTabIndex
else else
tell window 1 tell window 1
activate
make new tab with properties {URL:theURL} make new tab with properties {URL:theURL}
end tell end tell
end if end if