-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from jordanmccullough/curate-link-help-map
Use variety of selectors for better element targeting
- Loading branch information
Showing
1 changed file
with
50 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,72 @@ | ||
[ | ||
{ | ||
"description": "GitHub Logo", | ||
"selector": ".header-logo-invertocat", | ||
"helpLink": "https://help.github.com/articles/searching-github/" | ||
"description": "Create a repository", | ||
"selector": "[aria-label='Create new...']", | ||
"helpLink": "https://help.github.com/articles/create-a-repo/" | ||
}, | ||
{ | ||
"description": "User avatar", | ||
"selector": ".avatar", | ||
"helpLink": "https://help.github.com/articles/how-do-i-set-up-my-profile-picture/" | ||
"description": "Create a repository", | ||
"selector": ".new-repo", | ||
"helpLink": "https://help.github.com/articles/create-a-repo/" | ||
}, | ||
{ | ||
"description": "Repo name & path", | ||
"selector": ".breadcrumb", | ||
"helpLink": "https://help.github.com/articles/working-with-repositories/" | ||
"description": "Fork a repository", | ||
"selector": ".fork-button", | ||
"helpLink": "https://help.github.com/articles/fork-a-repo/" | ||
}, | ||
{ | ||
"description": "PR, branch selector", | ||
"selector": ".file-navigation", | ||
"helpLink": "https://help.github.com/articles/using-pull-requests/" | ||
"description": "Be social", | ||
"selector": ".js-social-container", | ||
"helpLink": "https://help.github.com/articles/be-social/" | ||
}, | ||
{ | ||
"description": "Repository permissions", | ||
"selector": ".entry-title", | ||
"helpLink": "https://help.github.com/articles/what-are-the-different-access-permissions/" | ||
}, | ||
{ | ||
"description": "Blocking a user", | ||
"selector": ".user-actions", | ||
"helpLink": "https://help.github.com/articles/blocking-a-user/" | ||
}, | ||
{ | ||
"description": "Commits page menu link", | ||
"selector": ".commits", | ||
"helpLink": "https://help.github.com/articles/editing-files-in-your-repository/" | ||
"description": "Setting default branch", | ||
"selector": "#change_default_branch", | ||
"helpLink": "https://help.github.com/articles/setting-the-default-branch/" | ||
}, | ||
{ | ||
"description": "Unwatch/watch button", | ||
"selector": ".subscription", | ||
"helpLink": "https://help.github.com/articles/watching-repositories/" | ||
"description": "Transferring a repository", | ||
"selector": "#transfer_button", | ||
"helpLink": "https://help.github.com/articles/transferring-a-repository/" | ||
}, | ||
{ | ||
"description": "Pull Request/Issue number", | ||
"selector": ".gh-header-number", | ||
"helpLink": "https://help.github.com/articles/closing-issues-via-commit-messages/" | ||
"description": "Renaming a repository", | ||
"selector": "#rename_field", | ||
"helpLink": "https://help.github.com/articles/renaming-a-repository/" | ||
}, | ||
{ | ||
"description": "Pull Request/Issue status", | ||
"selector": ".state", | ||
"helpLink": "https://help.github.com/articles/closing-issues-via-commit-messages/" | ||
"description": "Searching GitHub", | ||
"selector": ".js-site-search-form", | ||
"helpLink": "https://help.github.com/articles/searching-github/" | ||
}, | ||
{ | ||
"description": "About Notifications", | ||
"selector": "[aria-label='You have unread notifications in this repository']", | ||
"helpLink": "https://help.github.com/articles/about-notifications/" | ||
}, | ||
{ | ||
"description": "Repository star action button", | ||
"selector": ".starring-container", | ||
"helpLink": "https://help.github.com/articles/closing-issues-via-commit-messages/" | ||
"description": "About Stars", | ||
"selector": ".star-button", | ||
"helpLink": "https://help.github.com/articles/about-stars/" | ||
}, | ||
{ | ||
"description": "Using Pull Requests", | ||
"selector": "[aria-label='Pull Requests']", | ||
"helpLink": "https://help.github.com/articles/using-pull-requests/" | ||
}, | ||
{ | ||
"description": "Clone URLs", | ||
"selector": ".clone-options", | ||
"helpLink": "https://help.github.com/articles/closing-issues-via-commit-messages/" | ||
"description": "Issues", | ||
"selector": "[aria-label='Issues']", | ||
"helpLink": "https://help.github.com/articles/about-issues/" | ||
} | ||
|
||
|
||
|
||
] |