Sha256: d1295da5cca6ac9daf9c69517172af71ce19996954dc7fb8756735c0a00a9bb7

Contents?: true

Size: 1.67 KB

Versions: 16

Compression:

Stored size: 1.67 KB

Contents

if (!String.prototype.trim) {
    String.prototype.trim = function () {
      return this.replace(/^\s+|\s+$/g,'');
    };
}

if (!Array.isArray) {
    Array.isArray = function (vArg) {
      return Object.prototype.toString.call(vArg) === "[object Array]";
    };
}

if (!Array.prototype.indexOf) {
    Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) {
        "use strict";
        if (this == null) {
            throw new TypeError();
        }
        var t = Object(this);
        var len = t.length >>> 0;
        if (len === 0) {
            return -1;
        }
        var n = 0;
        if (arguments.length > 1) {
            n = Number(arguments[1]);
            if (n != n) { // shortcut for verifying if it's NaN
                n = 0;
            } else if (n != 0 && n != Infinity && n != -Infinity) {
                n = (n > 0 || -1) * Math.floor(Math.abs(n));
            }
        }
        if (n >= len) {
            return -1;
        }
        var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0);
        for (; k < len; k++) {
            if (k in t && t[k] === searchElement) {
                return k;
            }
        }
        return -1;
    }
}

require.config({
    paths: {
        'd3': 'vendor/d3.min',
        "jquery": "vendor/jquery.min",
        "jquery-ui": "vendor/jquery-ui.min",
        "jquery.dialogextend": "vendor/jquery.dialogextend.min"
    },
    shim: {
        'd3': {
            exports: 'd3'
        },
        'jquery-ui': ['jquery'],
        'jquery.dialogextend': {
            deps: ['jquery', 'jquery-ui'],
            exports: '$'
        }
    }
});

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
puppetfactory-0.6.5 public/explain-git-with-d3/js/main.js
puppetfactory-0.6.4 public/explain-git-with-d3/js/main.js
puppetfactory-0.6.3 public/explain-git-with-d3/js/main.js
puppetfactory-0.6.2 public/explain-git-with-d3/js/main.js
puppetfactory-0.6.1 public/explain-git-with-d3/js/main.js
puppetfactory-0.6.0 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.9 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.8 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.7 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.6 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.5 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.4 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.3 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.2 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.1 public/explain-git-with-d3/js/main.js
puppetfactory-0.5.0 public/explain-git-with-d3/js/main.js