Guest User

Untitled

a guest
Jun 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. YUI({
  2. debug: true,
  3. groups: {
  4. app: {
  5. combine: false,
  6. base: "src/",
  7. modules: {
  8. module1: {
  9. path: "module1.js",
  10. requires: ["module2"]
  11. },
  12. module2: {
  13. path: "module2.js",
  14. }
  15. }
  16. }
  17. }
  18. }).use("module1", "module2", function(Y) {
  19.  
  20. //JS Code
  21.  
  22. });
Add Comment
Please, Sign In to add comment