Advertisement
Guest User

Untitled

a guest
May 28th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. define('jquery', function($) {
  2.  
  3. $.fn.chatalert = function() {
  4. alert('Here');
  5. }
  6.  
  7. }(jQuery)
  8. );
  9.  
  10. var config = {
  11. map: {
  12. '*': {
  13. chat: 'Gworks_Livechat/js/chat'
  14. }
  15. }
  16. };
  17.  
  18. <div class="chatcontent">...........</div>
  19. <script>// <![CDATA[
  20. require([
  21. 'jquery',
  22. 'chat'
  23. ], function ($) {
  24. $('.chatcontent').chatalert();
  25. });
  26. // ]]>
  27. </script>
  28.  
  29. var config = {
  30. map: {
  31. '*': {
  32. chat: 'Gworks_Livechat/js/chat'
  33. }
  34. }
  35. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement