Commit 3237e8c4 authored by Robert Knight's avatar Robert Knight

Use correct form of "Log in"

Use the verb form for correctness in context and consistency with text
on the h web pages.
parent 4f4f5d13
...@@ -245,7 +245,7 @@ class OAuthClient { ...@@ -245,7 +245,7 @@ class OAuthClient {
height: height, height: height,
}).replace(/&/g, ','); }).replace(/&/g, ',');
return $window.open('about:blank', 'Login to Hypothesis', authWindowSettings); return $window.open('about:blank', 'Log in to Hypothesis', authWindowSettings);
} }
} }
......
...@@ -170,7 +170,7 @@ describe('sidebar.util.oauth-client', () => { ...@@ -170,7 +170,7 @@ describe('sidebar.util.oauth-client', () => {
assert.calledWith( assert.calledWith(
fakeWindow.open, fakeWindow.open,
'about:blank', 'about:blank',
'Login to Hypothesis', 'Log in to Hypothesis',
'height=430,left=274.5,top=169,width=475' 'height=430,left=274.5,top=169,width=475'
); );
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment