Sha256: bd8a311b270adcc58a0b353e94e0e742f15cf27ce178ab6cfb22ac27bc396850

Contents?: true

Size: 1.9 KB

Versions: 10

Compression:

Stored size: 1.9 KB

Contents

/*
  Copyright (C) 2011 Ariya Hidayat <ariya.hidayat@gmail.com>

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

// Unfortunately we have to use User Agent detection to blacklist the browsers.
/*jslint browser:true */
(function (window) {
    'use strict';

    var majorVersion = parseInt(window.platform.version.split('.')[0], 10);

    window.checkEnv = function () {
        if (window.platform.name === 'Safari' && majorVersion <= 3) {
            throw new Error('CodeMirror does not support Safari <= 3');
        }
        if (window.platform.name === 'Opera' && majorVersion <= 8) {
            throw new Error('CodeMirror does not support Opera <= 8');
        }
    };

}(window));
/* vim: set sw=4 ts=4 et tw=80 : */

Version data entries

10 entries across 7 versions & 3 rubygems

Version Path
snowball-0.1.22 node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
snowball-0.1.22 node_modules/browserify/node_modules/detective/node_modules/esprima/demo/checkenv.js
sprockets-browserify-0.3.0 node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
sprockets-browserify-0.2.0 node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
ruby-wisp-source-0.8.0 vendor/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
ruby-wisp-source-0.7.0 vendor/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
sprockets-browserify-0.1.2 node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
sprockets-browserify-0.1.2 node_modules/browserify/node_modules/detective/node_modules/esprima/demo/checkenv.js
sprockets-browserify-0.1.0 node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js
sprockets-browserify-0.1.0 node_modules/browserify/node_modules/detective/node_modules/esprima/demo/checkenv.js