Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: static/js/vendor/bowser.js

Issue 29624561: Issue 6104 - Minified code in help center repository (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Fix sourcemaps for CSS files, Change tabs to spaces Created Nov. 30, 2017, 10:03 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « static/js/main.js ('k') | static/js/vendor/classList.min.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /*! 1 /*!
2 * Bowser - a browser detector 2 * Bowser - a browser detector
3 * https://github.com/ded/bowser 3 * https://github.com/ded/bowser
4 * MIT License | (c) Dustin Diaz 2015 4 * MIT License | (c) Dustin Diaz 2015
5 */ 5 */
6 6
7 !function (root, name, definition) { 7 !function (root, name, definition) {
8 if (typeof module != 'undefined' && module.exports) module.exports = definitio n() 8 if (typeof module != 'undefined' && module.exports) module.exports = definitio n()
9 else if (typeof define == 'function' && define.amd) define(name, definition) 9 else if (typeof define == 'function' && define.amd) define(name, definition)
10 else root[name] = definition() 10 else root[name] = definition()
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 bowser.check = check; 591 bowser.check = check;
592 592
593 /* 593 /*
594 * Set our detect method to the main bowser object so we can 594 * Set our detect method to the main bowser object so we can
595 * reuse it to test other user agents. 595 * reuse it to test other user agents.
596 * This is needed to implement future tests. 596 * This is needed to implement future tests.
597 */ 597 */
598 bowser._detect = detect; 598 bowser._detect = detect;
599 599
600 return bowser 600 return bowser
601 }); 601 });
602 //# sourceMappingURL=bowser.js.map
OLDNEW
« no previous file with comments | « static/js/main.js ('k') | static/js/vendor/classList.min.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld