Normalize line endings VIVO-101

This commit is contained in:
Brian Caruso 2013-07-18 15:19:53 -04:00
parent b097a4d754
commit 54f79f2ea7
587 changed files with 91501 additions and 91501 deletions

View file

@ -1,24 +1,24 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
var vitro;
// vitro == null: true
// vitro === null: false (only true if undefined)
// typeof vitro == 'undefined': true
if (!vitro) {
vitro = {};
}
vitro.browserUtils = {
isIELessThan8: function() {
var version;
if (navigator.appVersion.indexOf("MSIE") == -1) {
return false;
}
else {
version = parseFloat(navigator.appVersion.split("MSIE")[1]);
return version < 8;
}
}
};
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
var vitro;
// vitro == null: true
// vitro === null: false (only true if undefined)
// typeof vitro == 'undefined': true
if (!vitro) {
vitro = {};
}
vitro.browserUtils = {
isIELessThan8: function() {
var version;
if (navigator.appVersion.indexOf("MSIE") == -1) {
return false;
}
else {
version = parseFloat(navigator.appVersion.split("MSIE")[1]);
return version < 8;
}
}
};