Sha256: 50df614bf7b3bb032c885068dae794c3eced67c65c7f8e515644d60df80f466c

Contents?: true

Size: 680 Bytes

Versions: 1

Compression:

Stored size: 680 Bytes

Contents

(function($) {
    "use strict";


    try {

        Object.defineProperties($.prototype, {
            elements: {
                value: function() {
                    var
                        next,
                        collection = [];

                    do {
                        try {
                            next = this.iterateNext();
                            if (next) {
                                collection.push(next);
                            }
                        } catch (e) {}

                    } while (next)

                    return collection;
                }
            }
        });

    } catch(e) {}

})(XPathResult);

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
esphinx-rails-1.1.2 lib/assets/javascripts/esphinx/lib/extensions/x_path_result.js