Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix - openChrome won't open default browser (using Canary) #1215

Merged
merged 1 commit into from
Dec 9, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-dev-utils/openChrome.applescript
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ property targetWindow: null
on run argv
set theURL to item 1 of argv

tell application "Google Chrome"
tell application "Chrome"

if (count every window) = 0 then
make new window
Expand Down Expand Up @@ -58,7 +58,7 @@ end run
-- if found, store tab, index, and window in properties
-- (properties were declared on top of file)
on lookupTabWithUrl(lookupUrl)
tell application "Google Chrome"
tell application "Chrome"
-- Find a tab with the given url
set found to false
set theTabIndex to -1
Expand Down