Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. (function ($, scope) {
  2.  
  3. 'use strict';
  4.  
  5. /**
  6. * Class for $PURPOSE$
  7. *
  8. * @constructor
  9. */
  10. var $CLASS_NAME$ = function ($PARAMS$) {
  11. this.init($PARAMS$);
  12. };
  13.  
  14. /**
  15. * Class initialization
  16. */
  17. $CLASS_NAME$.prototype = {
  18.  
  19. /**
  20. * Needed for instanceof
  21. */
  22. constructor: $CLASS_NAME$,
  23.  
  24. /**
  25. * Constructor
  26. */
  27. init: function ($PARAMS$) {
  28. }$END$
  29. };
  30.  
  31. scope.$CLASS_NAME$ = $CLASS_NAME$;
  32.  
  33. })(window.jQuery, ('$SCOPE$' in window) ? window.$SCOPE$ : window.$SCOPE$ = {});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement