Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
539ce013
Commit
539ce013
authored
Jun 26, 2017
by
Sean Hammond
Committed by
GitHub
Jun 26, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #460 from hypothesis/ff-startup-fix
Fix sidebar app failing to load in Firefox extension.
parents
d451b587
90927d28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
app.js
src/sidebar/app.js
+11
-0
No files found.
src/sidebar/app.js
View file @
539ce013
...
...
@@ -225,5 +225,16 @@ module.exports = angular.module('h', [
processAppOpts
();
// Work around a check in Angular's $sniffer service that causes it to
// incorrectly determine that Firefox extensions are Chrome Packaged Apps which
// do not support the HTML 5 History API. This results Angular redirecting the
// browser on startup and thus the app fails to load.
// See https://github.com/angular/angular.js/blob/a03b75c6a812fcc2f616fc05c0f1710e03fca8e9/src/ng/sniffer.js#L30
if
(
window
.
chrome
&&
!
window
.
chrome
.
app
)
{
window
.
chrome
.
app
=
{
dummyAddedByHypothesisClient
:
true
,
};
}
var
appEl
=
document
.
querySelector
(
'hypothesis-app'
);
angular
.
bootstrap
(
appEl
,
[
'h'
],
{
strictDi
:
true
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment