Skip to content

Commit c9ca70d

Browse files
committed
Test lint failure
1 parent 9369c5d commit c9ca70d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

assets/js/download.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $(document).ready(function() {
22

33
// Detect browser.
44
var browser = 'other';
5-
if (navigator && navigator.userAgent) {
5+
if (navigator && navigator.userAgent)
66
if (navigator.userAgent.match(/Android.+Firefox/i)) {
77
browser = 'firefox-on-android';
88
}
@@ -27,7 +27,6 @@ $(document).ready(function() {
2727
else if (navigator.userAgent.match(/iPhone|iPad/i)) {
2828
browser = 'iphone';
2929
}
30-
}
3130

3231
// Update DOM.
3332
if (browser === 'iphone' || browser === 'other') {

0 commit comments

Comments
 (0)