document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div ng-app="myApp" ><ng-include src=" baseURL + 'chatcat.html'" ng-controller="AppController"></ng-include></div>
  2. <script type="text/javascript">
  3.  
  4. // Set options here
  5. var CC_OPTIONS = {
  6.  
  7. // This variable is used where a page has a number of sub-domains
  8. // If you had registered the domain yourdomain.com with chatcat.io
  9. // you may also want to have chat on a sub-domain forums.yourdomain.com
  10. // for this to work, when you add this code to your sub-domain's footer
  11. // you'd need to set primaryDomain: 'yourdomain.com'
  12. primaryDomain: '',
  13.  
  14. // This defaults to 5 minutes min 2 minutes, max 15 minutes
  15. inactivityTimeout: 5,
  16.  
  17. // Default - 12 hour clock i.e. 1:45 pm
  18. // 1) 24hour - show time in 24 hour format i.e. 13:45
  19. clockType: '24hour',
  20.  
  21. // Users can create public chat rooms?
  22. // If this is true users will be able to setup new
  23. // public rooms
  24. usersCanCreatePublicRooms: false,
  25.  
  26. // Allow anonymous login?
  27. anonymousLoginEnabled: false,
  28.  
  29. // Enable social login - please email us to get your domain whitelisted
  30. socialLoginEnabled: false,
  31.  
  32. // The URL to contact for single sign on
  33. singleSignOnURL: ''
  34.  
  35. }
  36.  
  37. var ccProtocol = (("https:" == document.location.protocol) ? "https://" : "http://");
  38.  
  39. document.write(decodeURI("%3Clink rel='stylesheet' href='" + ccProtocol + "chatcat.firebaseapp.com/css/_/cc_styles.min.css' %3E%3C/link%3E"));
  40. document.write(decodeURI("%3Cscript src='" + ccProtocol + "chatcat.firebaseapp.com/js/dist.min.js' type='text/javascript'%3E%3C/script%3E"));
  41. document.write(decodeURI("%3Cscript src='" + ccProtocol + "chatcat.firebaseapp.com/js/all.min.js' type='text/javascript'%3E%3C/script%3E"));
  42.  
  43. </script>
');