tuiHoneyPot

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

jquery.js (626B)


      1 define( [
      2 	"./core",
      3 	"./selector",
      4 	"./traversing",
      5 	"./callbacks",
      6 	"./deferred",
      7 	"./deferred/exceptionHook",
      8 	"./core/ready",
      9 	"./data",
     10 	"./queue",
     11 	"./queue/delay",
     12 	"./attributes",
     13 	"./event",
     14 	"./manipulation",
     15 	"./manipulation/_evalUrl",
     16 	"./wrap",
     17 	"./css",
     18 	"./css/hiddenVisibleSelectors",
     19 	"./serialize",
     20 	"./ajax",
     21 	"./ajax/xhr",
     22 	"./ajax/script",
     23 	"./ajax/jsonp",
     24 	"./ajax/load",
     25 	"./core/parseXML",
     26 	"./core/parseHTML",
     27 	"./effects",
     28 	"./effects/animatedSelector",
     29 	"./offset",
     30 	"./dimensions",
     31 	"./deprecated",
     32 	"./exports/amd",
     33 	"./exports/global"
     34 ], function( jQuery ) {
     35 
     36 "use strict";
     37 
     38 return jQuery;
     39 
     40 } );