tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

jquery.js (459B)


      1 (function ($) {
      2     /**
      3      * Register plugin with jQuery
      4      * @param  {Object} options Overrides default options
      5      * @return {Object}         The instance of this class.
      6      */
      7     $.fn.faketerminal = function (options) {
      8         return this.each(function () {
      9             $(this)
     10                 .data(
     11                     'instance',
     12                     new window.FakeTerminal.main(this, options)
     13                 );
     14         });
     15     };
     16 
     17 })(jQuery);