{"id":13452220,"url":"https://github.com/TurnWheel/jReject","last_synced_at":"2025-03-23T19:33:51.219Z","repository":{"id":1263011,"uuid":"1201936","full_name":"TurnWheel/jReject","owner":"TurnWheel","description":"jQuery Browser Rejection Plugin","archived":true,"fork":false,"pushed_at":"2021-10-02T01:38:57.000Z","size":236,"stargazers_count":274,"open_issues_count":22,"forks_count":98,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-03-01T05:11:36.009Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://jreject.turnwheel.com/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TurnWheel.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-12-28T01:39:26.000Z","updated_at":"2025-02-02T00:56:35.000Z","dependencies_parsed_at":"2022-08-16T12:50:17.288Z","dependency_job_id":null,"html_url":"https://github.com/TurnWheel/jReject","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TurnWheel%2FjReject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TurnWheel%2FjReject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TurnWheel%2FjReject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TurnWheel%2FjReject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TurnWheel","download_url":"https://codeload.github.com/TurnWheel/jReject/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245159149,"owners_count":20570331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T07:01:17.267Z","updated_at":"2025-03-23T19:33:50.066Z","avatar_url":"https://github.com/TurnWheel.png","language":"HTML","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"[jReject](http://jreject.turnwheel.com/) - jQuery Browser Rejection Plugin\n================================\n\n⚠️ Unmaintained: This project is no longer maintained, and may not be compatible with latest browser versions.\nPlease seek alternatives for similar functionality.\n===================\n\nCreated by Steven Bower\n\nTurnWheel Designs (2009-2014)\n\nConcept based on \"IE6 Upgrade Warning\" library.\n\nView doc.html for documentation and examples, or\nvisit [jreject.turnwheel.com](http://jreject.turnwheel.com/)\n\n**Important Note about jQuery Versions**\nSupported by jQuery 1.7+ \u0026 2.0+\nIf you wish to reject IE 6-8 or earlier, you must use jQuery 1.11.x or lower.\n\nLicensing:\n-----------------\nThis library is dual licensed under the MIT and GPLv2 licenses.\n\nDefault Options:\n-----------------\n\toptions = {\n\t\t// Specifies which browsers/versions will be blocked\n\t\treject : {\n\t\t\tall: false, // Covers Everything (Nothing blocked)\n\t\t\tmsie: 6 // Covers MSIE \u003c= 6 (Blocked by default)\n\t\t\t/*\n\t\t\t * Many possible combinations.\n\t\t\t * You can specify browser (msie, chrome, firefox)\n\t\t\t * You can specify rendering engine (geko, trident)\n\t\t\t * You can specify OS (Win, Mac, Linux, Solaris, iPhone, iPad)\n\t\t\t *\n\t\t\t * You can specify versions of each.\n\t\t\t * Examples: msie9: true, firefox8: true,\n\t\t\t *\n\t\t\t * You can specify the highest number to reject.\n\t\t\t * Example: msie: 9 (9 and lower are rejected.\n\t\t\t *\n\t\t\t * There is also \"unknown\" that covers what isn't detected\n\t\t\t * Example: unknown: true\n\t\t\t */\n\t\t},\n\t\tdisplay: [], // What browsers to display and their order (default set below)\n\t\tbrowserShow: true, // Should the browser options be shown?\n\t\tbrowserInfo: { // Settings for which browsers to display\n\t\t\tchrome: {\n\t\t\t\t// Text below the icon\n\t\t\t\ttext: 'Google Chrome',\n\t\t\t\t// URL For icon/text link\n\t\t\t\turl: 'http://www.google.com/chrome/',\n\t\t\t\t// (Optional) Use \"allow\" to customized when to show this option\n\t\t\t\t// Example: to show chrome only for IE users\n\t\t\t\t// allow: { all: false, msie: true }\n\t\t\t},\n\t\t\tfirefox: {\n\t\t\t\ttext: 'Mozilla Firefox',\n\t\t\t\turl: 'http://www.mozilla.com/firefox/'\n\t\t\t},\n\t\t\tsafari: {\n\t\t\t\ttext: 'Safari',\n\t\t\t\turl: 'http://www.apple.com/safari/download/'\n\t\t\t},\n\t\t\topera: {\n\t\t\t\ttext: 'Opera',\n\t\t\t\turl: 'http://www.opera.com/download/'\n\t\t\t},\n\t\t\tmsie: {\n\t\t\t\ttext: 'Internet Explorer',\n\t\t\t\turl: 'http://www.microsoft.com/windows/Internet-explorer/'\n\t\t\t}\n\t\t},\n\n\t\t// Pop-up Window Text\n\t\theader: 'Did you know that your Internet Browser is out of date?',\n\n\t\tparagraph1: 'Your browser is out of date, and may not be compatible with '+\n\t\t\t\t\t'our website. A list of the most popular web browsers can be '+\n\t\t\t\t\t'found below.',\n\n\t\tparagraph2: 'Just click on the icons to get to the download page',\n\n\t\t// Allow closing of window\n\t\tclose: true,\n\n\t\t// Message displayed below closing link\n\t\tcloseMessage: 'By closing this window you acknowledge that your experience '+\n\t\t\t\t\t\t'on this website may be degraded',\n\t\tcloseLink: 'Close This Window',\n\t\tcloseURL: '#',\n\n\t\t// Allows closing of window with esc key\n\t\tcloseESC: true,\n\n\t\t// Use cookies to remmember if window was closed previously?\n\t\tcloseCookie: false,\n\t\t// Cookie settings are only used if closeCookie is true\n\t\tcookieSettings: {\n\t\t\t// Path for the cookie to be saved on\n\t\t\t// Should be root domain in most cases\n\t\t\tpath: '/',\n\t\t\t// Expiration Date (in seconds)\n\t\t\t// 0 (default) means it ends with the current session\n\t\t\texpires: 0\n\t\t},\n\n\t\t// Path where images are located\n\t\timagePath: './images/',\n\t\t// Background color for overlay\n\t\toverlayBgColor: '#000',\n\t\t// Background transparency (0-1)\n\t\toverlayOpacity: 0.8,\n\n\t\t// Fade in time on open ('slow','medium','fast' or integer in ms)\n\t\tfadeInTime: 'fast',\n\t\t// Fade out time on close ('slow','medium','fast' or integer in ms)\n\t\tfadeOutTime: 'fast',\n\n\t\t// Google Analytics Link Tracking (Optional)\n\t\t// Set to true to enable\n\t\t// Note: Analytics tracking code must be added separately\n\t\tanalytics: false\n\t};\n\nRun On load (Default Options):\n\t$(function() {\n\t\t$.reject();\n\t});\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTurnWheel%2FjReject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTurnWheel%2FjReject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTurnWheel%2FjReject/lists"}