Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. (function($){
  2. "use strict";
  3.  
  4. $(function(){
  5.  
  6. var add = function(a, b){
  7. // ...
  8. },
  9. print = function(str){
  10. // ...
  11. },
  12. setup = function(){
  13. // ...
  14. },
  15. init = function(){
  16. // ...
  17. };
  18.  
  19. setup();
  20. init();
  21. });
  22. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement