annotate vakata-jstree-3.3.5/src/intro.js @ 10:5286f3b1c9c2
draft default tip
planemo upload commit 363ef0a73d874c67326a67f51a78328906951248-dirty
| author |
mingchen0919 |
| date |
Fri, 30 Nov 2018 22:15:50 -0500 |
| parents |
3f92c10de274 |
| children |
|
| rev |
line source |
|
7
|
1 /*globals jQuery, define, module, exports, require, window, document, postMessage */
|
|
|
2 (function (factory) {
|
|
|
3 "use strict";
|
|
|
4 if (typeof define === 'function' && define.amd) {
|
|
|
5 define(['jquery'], factory);
|
|
|
6 }
|
|
|
7 else if(typeof module !== 'undefined' && module.exports) {
|
|
|
8 module.exports = factory(require('jquery'));
|
|
|
9 }
|
|
|
10 else {
|
|
|
11 factory(jQuery);
|
|
|
12 }
|
|
|
13 }(function ($, undefined) {
|
|
|
14 "use strict";
|