Put things in the right namespace
parent
0ddfa79a34
commit
778fed9a19
|
@ -831,7 +831,7 @@ window.os_detect.searchVersion = function(needle, haystack) {
|
|||
/*
|
||||
* Return -1 if a < b, 0 if a == b, 1 if a > b
|
||||
*/
|
||||
window.os_detect.ua_ver_cmp = function(ver_a, ver_b) {
|
||||
window.ua_ver_cmp = function(ver_a, ver_b) {
|
||||
// shortcut the easy case
|
||||
if (ver_a == ver_b) {
|
||||
return 0;
|
||||
|
@ -875,15 +875,15 @@ window.os_detect.ua_ver_cmp = function(ver_a, ver_b) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
window.os_detect.ua_ver_lt = function(a, b) {
|
||||
window.ua_ver_lt = function(a, b) {
|
||||
if (-1 == this.ua_ver_cmp(a,b)) { return true; }
|
||||
return false;
|
||||
}
|
||||
window.os_detect.ua_ver_gt = function(a, b) {
|
||||
window.ua_ver_gt = function(a, b) {
|
||||
if (1 == this.ua_ver_cmp(a,b)) { return true; }
|
||||
return false;
|
||||
}
|
||||
window.os_detect.ua_ver_eq = function(a, b) {
|
||||
window.ua_ver_eq = function(a, b) {
|
||||
if (0 == this.ua_ver_cmp(a,b)) { return true; }
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ class JavascriptOSDetect < JSObfu
|
|||
|
||||
def initialize(custom_js = '', opts = {})
|
||||
@js = custom_js
|
||||
@js += File.read(File.join(File.dirname(__FILE__), "javascriptosdetect.js"))
|
||||
@js += ::File.read(::File.join(::File.dirname(__FILE__), "javascriptosdetect.js"))
|
||||
|
||||
super @js
|
||||
|
||||
|
|
Loading…
Reference in New Issue