forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.reject.js
More file actions
596 lines (497 loc) · 17.5 KB
/
jquery.reject.js
File metadata and controls
596 lines (497 loc) · 17.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
/*
* jReject (jQuery Browser Rejection Plugin)
* Version 1.1.0
* URL: http://jreject.turnwheel.com/
* Description: jReject is a easy method of rejecting specific browsers on your site
* Author: Steven Bower (TurnWheel Designs) http://turnwheel.com/
* Copyright: Copyright (c) 2009-2014 Steven Bower under dual MIT/GPLv2 license.
*/
(function($) {
$.reject = function(options) {
var opts = $.extend(true, {
// Specifies which browsers/versions will be blocked
reject : {
all: false, // Covers Everything (Nothing blocked)
msie: 6 // Covers MSIE <= 6 (Blocked by default)
/*
* Many possible combinations.
* You can specify browser (msie, chrome, firefox)
* You can specify rendering engine (geko, trident)
* You can specify OS (Win, Mac, Linux, Solaris, iPhone, iPad)
*
* You can specify versions of each.
* Examples: msie9: true, firefox8: true,
*
* You can specify the highest number to reject.
* Example: msie: 9 (9 and lower are rejected.
*
* There is also "unknown" that covers what isn't detected
* Example: unknown: true
*/
},
display: [], // What browsers to display and their order (default set below)
browserShow: true, // Should the browser options be shown?
browserInfo: { // Settings for which browsers to display
msie: {
text: 'Internet Explorer',
url: 'http://www.microsoft.com/windows/Internet-explorer/'
},
chrome: {
// Text below the icon
text: 'Google Chrome',
// URL For icon/text link
url: 'http://www.google.com/chrome/',
// (Optional) Use "allow" to customized when to show this option
// Example: to show chrome only for IE users
// allow: { all: false, msie: true }
},
firefox: {
text: 'Mozilla Firefox',
url: 'http://www.mozilla.com/firefox/'
},
safari: {
text: 'Safari',
url: 'http://www.apple.com/safari/download/'
},
opera: {
text: 'Opera',
url: 'http://www.opera.com/download/'
},
},
// Pop-up Window Text
header: 'Did you know that your Internet Browser is out of date?',
paragraph1: 'Your browser is out of date, and may not be compatible with '+
'our website. A list of the most popular web browsers can be '+
'found below.',
paragraph2: 'Just click on the icons to get to the download page',
// Allow closing of window
close: true,
// Message displayed below closing link
closeMessage: 'By closing this window you acknowledge that your experience '+
'on this website may be degraded',
closeLink: 'Close This Window',
closeURL: '#',
// Allows closing of window with esc key
closeESC: true,
// Use cookies to remmember if window was closed previously?
closeCookie: false,
// Cookie settings are only used if closeCookie is true
cookieSettings: {
// Path for the cookie to be saved on
// Should be root domain in most cases
path: '/',
// Expiration Date (in seconds)
// 0 (default) means it ends with the current session
expires: 0
},
// Path where images are located
imagePath: './content/browsers/',
// Background color for overlay
overlayBgColor: '#000',
// Background transparency (0-1)
overlayOpacity: 0.8,
// Fade in time on open ('slow','medium','fast' or integer in ms)
fadeInTime: 'fast',
// Fade out time on close ('slow','medium','fast' or integer in ms)
fadeOutTime: 'fast',
// Google Analytics Link Tracking (Optional)
// Set to true to enable
// Note: Analytics tracking code must be added separately
analytics: false
}, options);
// Set default browsers to display if not already defined
if (opts.display.length < 1) {
opts.display = [ 'chrome','firefox','safari','opera','msie' ];
}
// beforeRject: Customized Function
if ($.isFunction(opts.beforeReject)) {
opts.beforeReject();
}
// Disable 'closeESC' if closing is disabled (mutually exclusive)
if (!opts.close) {
opts.closeESC = false;
}
// This function parses the advanced browser options
var browserCheck = function(settings) {
// Check 1: Look for 'all' forced setting
// Check 2: Browser+major version (optional) (eg. 'firefox','msie','{msie: 6}')
// Check 3: Browser+major version (eg. 'firefox3','msie7','chrome4')
// Check 4: Rendering engine+version (eg. 'webkit', 'gecko', '{webkit: 537.36}')
// Check 5: Operating System (eg. 'win','mac','linux','solaris','iphone')
var layout = settings[$.layout.name],
browser = settings[$.browser.name];
return !!(settings['all']
|| (browser && (browser === true || $.browser.versionNumber <= browser))
|| settings[$.browser.className]
|| (layout && (layout === true || $.layout.versionNumber <= layout))
|| settings[$.os.name]);
};
// Determine if we need to display rejection for this browser, or exit
if (!browserCheck(opts.reject)) {
// onFail: Optional Callback
if ($.isFunction(opts.onFail)) {
opts.onFail();
}
return false;
}
// If user can close and set to remmember close, initiate cookie functions
if (opts.close && opts.closeCookie) {
// Local global setting for the name of the cookie used
var COOKIE_NAME = 'jreject-close';
// Cookies Function: Handles creating/retrieving/deleting cookies
// Cookies are only used for opts.closeCookie parameter functionality
var _cookie = function(name, value) {
// Save cookie
if (typeof value != 'undefined') {
var expires = '';
// Check if we need to set an expiration date
if (opts.cookieSettings.expires !== 0) {
var date = new Date();
date.setTime(date.getTime()+(opts.cookieSettings.expires*1000));
expires = "; expires="+date.toGMTString();
}
// Get path from settings
var path = opts.cookieSettings.path || '/';
// Set Cookie with parameters
document.cookie = name+'='+
encodeURIComponent((!value) ? '' : value)+expires+
'; path='+path;
return true;
}
// Get cookie
else {
var cookie,val = null;
if (document.cookie && document.cookie !== '') {
var cookies = document.cookie.split(';');
// Loop through all cookie values
var clen = cookies.length;
for (var i = 0; i < clen; ++i) {
cookie = $.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0,name.length+1) == (name+'=')) {
var len = name.length;
val = decodeURIComponent(cookie.substring(len+1));
break;
}
}
}
// Returns cookie value
return val;
}
};
// If cookie is set, return false and don't display rejection
if (_cookie(COOKIE_NAME)) {
return false;
}
}
// Load background overlay (jr_overlay) + Main wrapper (jr_wrap) +
// Inner Wrapper (jr_inner) w/ opts.header (jr_header) +
// opts.paragraph1/opts.paragraph2 if set
var html = '<div id="jr_overlay"></div><div id="jr_wrap"><div id="jr_inner">'+
'<h1 id="jr_header">'+opts.header+'</h1>'+
(opts.paragraph1 === '' ? '' : '<p>'+opts.paragraph1+'</p>')+
(opts.paragraph2 === '' ? '' : '<p>'+opts.paragraph2+'</p>');
var displayNum = 0;
if (opts.browserShow) {
html += '<ul>';
// Generate the browsers to display
for (var x in opts.display) {
var browser = opts.display[x]; // Current Browser
var info = opts.browserInfo[browser] || false; // Browser Information
// If no info exists for this browser
// or if this browser is not suppose to display to this user
// based on "allow" flag
if (!info || (info['allow'] != undefined && !browserCheck(info['allow']))) {
continue;
}
var url = info.url || '#'; // URL to link text/icon to
// Generate HTML for this browser option
html += '<li id="jr_'+browser+'"><div class="jr_icon"></div>'+
'<div><a href="'+url+'">'+(info.text || 'Unknown')+'</a>'+
'</div></li>';
++displayNum;
}
html += '</ul>';
}
// Close list and #jr_list
html += '<div id="jr_close">'+
// Display close links/message if set
(opts.close ? '<a href="'+opts.closeURL+'">'+opts.closeLink+'</a>'+
'<p>'+opts.closeMessage+'</p>' : '')+'</div>'+
// Close #jr_inner and #jr_wrap
'</div></div>';
var element = $('<div>'+html+'</div>'); // Create element
var size = _pageSize(); // Get page size
var scroll = _scrollSize(); // Get page scroll
// This function handles closing this reject window
// When clicked, fadeOut and remove all elements
element.bind('closejr', function() {
// Make sure the permission to close is granted
if (!opts.close) {
return false;
}
// Customized Function
if ($.isFunction(opts.beforeClose)) {
opts.beforeClose();
}
// Remove binding function so it
// doesn't get called more than once
$(this).unbind('closejr');
// Fade out background and modal wrapper
$('#jr_overlay,#jr_wrap').fadeOut(opts.fadeOutTime,function() {
$(this).remove(); // Remove element from DOM
// afterClose: Customized Function
if ($.isFunction(opts.afterClose)) {
opts.afterClose();
}
});
// Show elements that were hidden for layering issues
var elmhide = 'embed.jr_hidden, object.jr_hidden, select.jr_hidden, applet.jr_hidden';
$(elmhide).show().removeClass('jr_hidden');
// Set close cookie for next run
if (opts.closeCookie) {
_cookie(COOKIE_NAME, 'true');
}
return true;
});
// Tracks clicks in Google Analytics (category 'External Links')
// only if opts.analytics is enabled
var analytics = function(url) {
if (!opts.analytics) {
return false;
}
// Get just the hostname
var host = url.split(/\/+/g)[1];
// Send external link event to Google Analaytics
// Attempts both versions of analytics code. (Newest first)
try {
// Newest analytics code
ga('send', 'event', 'External', 'Click', host, url);
} catch (e) {
try {
_gaq.push([ '_trackEvent', 'External Links', host, url ]);
} catch (e) { }
}
};
// Called onClick for browser links (and icons)
// Opens link in new window
var openBrowserLinks = function(url) {
// Send link to analytics if enabled
analytics(url);
// Open window, generate random id value
window.open(url, 'jr_'+ Math.round(Math.random()*11));
return false;
};
/*
* Trverse through element DOM and apply JS variables
* All CSS elements that do not require JS will be in
* css/jquery.jreject.css
*/
// Creates 'background' (div)
element.find('#jr_overlay').css({
width: size[0],
height: size[1],
background: opts.overlayBgColor,
opacity: opts.overlayOpacity
});
// Wrapper for our pop-up (div)
element.find('#jr_wrap').css({
top: scroll[1]+(size[3]/4),
left: scroll[0]
});
// Wrapper for inner centered content (div)
element.find('#jr_inner').css({
minWidth: displayNum*100,
maxWidth: displayNum*140,
// min/maxWidth not supported by IE
width: $.layout.name == 'trident' ? displayNum*155 : 'auto'
});
element.find('#jr_inner li').css({ // Browser list items (li)
background: 'transparent url("'+opts.imagePath+'background_browser.gif")'+
'no-repeat scroll left top'
});
element.find('#jr_inner li .jr_icon').each(function() {
// Dynamically sets the icon background image
var self = $(this);
self.css('background','transparent url('+opts.imagePath+'browser_'+
(self.parent('li').attr('id').replace(/jr_/,''))+'.gif)'+
' no-repeat scroll left top');
// Send link clicks to openBrowserLinks
self.click(function () {
var url = $(this).next('div').children('a').attr('href');
openBrowserLinks(url);
});
});
element.find('#jr_inner li a').click(function() {
openBrowserLinks($(this).attr('href'));
return false;
});
// Bind closing event to trigger closejr
// to be consistant with ESC key close function
element.find('#jr_close a').click(function() {
$(this).trigger('closejr');
// If plain anchor is set, return false so there is no page jump
if (opts.closeURL === '#') {
return false;
}
});
// Set focus (fixes ESC key issues with forms and other focus bugs)
$('#jr_overlay').focus();
// Hide elements that won't display properly
$('embed, object, select, applet').each(function() {
if ($(this).is(':visible')) {
$(this).hide().addClass('jr_hidden');
}
});
// Append element to body of document to display
$('body').append(element.hide().fadeIn(opts.fadeInTime));
// Handle window resize/scroll events and update overlay dimensions
$(window).bind('resize scroll',function() {
var size = _pageSize(); // Get size
// Update overlay dimensions based on page size
$('#jr_overlay').css({
width: size[0],
height: size[1]
});
var scroll = _scrollSize(); // Get page scroll
// Update modal position based on scroll
$('#jr_wrap').css({
top: scroll[1] + (size[3]/4),
left: scroll[0]
});
});
// Add optional ESC Key functionality
if (opts.closeESC) {
$(document).bind('keydown',function(event) {
// ESC = Keycode 27
if (event.keyCode == 27) {
element.trigger('closejr');
}
});
}
// afterReject: Customized Function
if ($.isFunction(opts.afterReject)) {
opts.afterReject();
}
return true;
};
// Based on compatibility data from quirksmode.com
// This is used to help calculate exact center of the page
var _pageSize = function() {
var xScroll = window.innerWidth && window.scrollMaxX ?
window.innerWidth + window.scrollMaxX :
(document.body.scrollWidth > document.body.offsetWidth ?
document.body.scrollWidth : document.body.offsetWidth);
var yScroll = window.innerHeight && window.scrollMaxY ?
window.innerHeight + window.scrollMaxY :
(document.body.scrollHeight > document.body.offsetHeight ?
document.body.scrollHeight : document.body.offsetHeight);
var windowWidth = window.innerWidth ? window.innerWidth :
(document.documentElement && document.documentElement.clientWidth ?
document.documentElement.clientWidth : document.body.clientWidth);
var windowHeight = window.innerHeight ? window.innerHeight :
(document.documentElement && document.documentElement.clientHeight ?
document.documentElement.clientHeight : document.body.clientHeight);
return [
xScroll < windowWidth ? xScroll : windowWidth, // Page Width
yScroll < windowHeight ? windowHeight : yScroll, // Page Height
windowWidth,windowHeight
];
};
// Based on compatibility data from quirksmode.com
var _scrollSize = function() {
return [
// scrollSize X
window.pageXOffset ? window.pageXOffset : (document.documentElement &&
document.documentElement.scrollTop ?
document.documentElement.scrollLeft : document.body.scrollLeft),
// scrollSize Y
window.pageYOffset ? window.pageYOffset : (document.documentElement &&
document.documentElement.scrollTop ?
document.documentElement.scrollTop : document.body.scrollTop)
];
};
})(jQuery);
/*
* jQuery Browser Plugin
* Version 2.4 / jReject 1.0.x
* URL: http://jquery.thewikies.com/browser
* Description: jQuery Browser Plugin extends browser detection capabilities and
* can assign browser selectors to CSS classes.
* Author: Nate Cavanaugh, Minhchau Dang, Jonathan Neal, & Gregory Waxman
* Updated By: Steven Bower for use with jReject plugin
* Copyright: Copyright (c) 2008 Jonathan Neal under dual MIT/GPL license.
*/
(function ($) {
$.browserTest = function (a, z) {
var u = 'unknown',
x = 'X',
m = function (r, h) {
for (var i = 0; i < h.length; i = i + 1) {
r = r.replace(h[i][0], h[i][1]);
}
return r;
}, c = function (i, a, b, c) {
var r = {
name: m((a.exec(i) || [u, u])[1], b)
};
r[r.name] = true;
if (!r.opera) {
r.version = (c.exec(i) || [x, x, x, x])[3];
}
else {
r.version = window.opera.version();
}
if (/safari/.test(r.name)) {
var safariversion = /(safari)(\/|\s)([a-z0-9\.\+]*?)(\;|dev|rel|\s|$)/;
var res = safariversion.exec(i);
if (res && res[3] && res[3] < 400) {
r.version = '2.0';
}
}
else if (r.name === 'presto') {
r.version = ($.browser.version > 9.27) ? 'futhark' : 'linear_b';
}
if (/msie/.test(r.name) && r.version === x) {
var ieVersion = /rv:(\d+\.\d+)/.exec(i);
r.version = ieVersion[1];
}
r.versionNumber = parseFloat(r.version, 10) || 0;
var minorStart = 1;
if (r.versionNumber < 100 && r.versionNumber > 9) {
minorStart = 2;
}
r.versionX = (r.version !== x) ? r.version.substr(0, minorStart) : x;
r.className = r.name + r.versionX;
return r;
};
a = (/Opera|Navigator|Minefield|KHTML|Chrome|CriOS/.test(a) ? m(a, [
[/(Firefox|MSIE|KHTML,\slike\sGecko|Konqueror)/, ''],
['Chrome Safari', 'Chrome'],
['CriOS', 'Chrome'],
['KHTML', 'Konqueror'],
['Minefield', 'Firefox'],
['Navigator', 'Netscape']
]) : a).toLowerCase();
$.browser = $.extend((!z) ? $.browser : {}, c(a,
/(camino|chrome|crios|firefox|netscape|konqueror|lynx|msie|trident|opera|safari)/,
[
['trident', 'msie']
],
/(camino|chrome|crios|firefox|netscape|netscape6|opera|version|konqueror|lynx|msie|rv|safari)(:|\/|\s)([a-z0-9\.\+]*?)(\;|dev|rel|\s|$)/));
$.layout = c(a, /(gecko|konqueror|msie|trident|opera|webkit)/, [
['konqueror', 'khtml'],
['msie', 'trident'],
['opera', 'presto']
], /(applewebkit|rv|konqueror|msie)(\:|\/|\s)([a-z0-9\.]*?)(\;|\)|\s)/);
$.os = {
name: (/(win|mac|linux|sunos|solaris|iphone|ipad)/.
exec(navigator.platform.toLowerCase()) || [u])[0].replace('sunos', 'solaris')
};
if (!z) {
$('html').addClass([$.os.name, $.browser.name, $.browser.className,
$.layout.name, $.layout.className].join(' '));
}
};
$.browserTest(navigator.userAgent);
}(jQuery));