1
0
Fork 0
forked from 0x2620/oxjs

fixing date

This commit is contained in:
rolux 2011-04-24 00:27:31 +02:00
commit 3672d7ee9c
2 changed files with 94 additions and 86 deletions

View file

@ -288,10 +288,10 @@ Provides function Ox.UI([options], callback) that fires when
function stop() {
var counter = 0,
message = 'Browser not supported, use ' + userAgents.map(function(userAgent, i) {
return userAgent.name + (
i == userAgents.length - 1 ? '.' :
i == userAgents.length - 2 ? ' or' : ','
message = 'Browser not supported, use ' + browsers.map(function(browser, i) {
return browser.name + (
i == browsers.length - 1 ? '.' :
i == browsers.length - 2 ? ' or' : ','
);
}).join(' ');
if (oxUIOptions.display == 'none') {