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

Delta Between Two Patch Sets: static/src/js/vendor/bowser.js

Issue 29624561: Issue 6104 - Minified code in help center repository (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Left Patch Set: Created Nov. 29, 2017, 2:25 p.m.
Right Patch Set: Consolidated gulp tasks Created Dec. 7, 2017, 2:48 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 });
LEFTRIGHT

Powered by Google App Engine
This is Rietveld