forked from 0x2620/oxjs
fixing date
This commit is contained in:
parent
4d3c7143a5
commit
3672d7ee9c
2 changed files with 94 additions and 86 deletions
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue