Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(895)

Side by Side Diff: ui/webui/resources/js/cr.js

Issue 2138183002: [ios] Added cr.isIOS function to use in WebUI pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * The global object. 6 * The global object.
7 * @type {!Object} 7 * @type {!Object}
8 * @const 8 * @const
9 */ 9 */
10 var global = this; 10 var global = this;
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 469
470 /** Whether this is on vanilla Linux (not chromeOS). */ 470 /** Whether this is on vanilla Linux (not chromeOS). */
471 get isLinux() { 471 get isLinux() {
472 return /Linux/.test(navigator.userAgent); 472 return /Linux/.test(navigator.userAgent);
473 }, 473 },
474 474
475 /** Whether this is on Android. */ 475 /** Whether this is on Android. */
476 get isAndroid() { 476 get isAndroid() {
477 return /Android/.test(navigator.userAgent); 477 return /Android/.test(navigator.userAgent);
478 } 478 }
479
480 /** Whether this is on iOS. */
481 get isIOS() {
482 return navigator.platform === 'iPhone' || navigator.platform === 'iPad';
dpapad 2016/07/11 20:45:33 Can we make these comparisons a bit less fragile a
Eugene But (OOO till 7-30) 2016/07/11 21:43:12 Done.
483 }
479 }; 484 };
480 }(); 485 }();
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698