Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

facebook.js 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. var Unibase;
  2. (function (Unibase) {
  3. let Platform;
  4. (function (Platform) {
  5. let Communications;
  6. (function (Communications) {
  7. let Components;
  8. (function (Components) {
  9. let Remainders;
  10. (function (Remainders) {
  11. class Facebook extends Unibase.Platform.Core.BaseComponent {
  12. cssFiles() {
  13. throw new Error("Method not implemented.");
  14. }
  15. jsFiles() {
  16. throw new Error("Method not implemented.");
  17. }
  18. html(id, containerid) {
  19. var html = '';
  20. return html;
  21. }
  22. load(id, containerid, callback) {
  23. throw new Error("Method not implemented.");
  24. }
  25. init(containerid) {
  26. debugger;
  27. this.loaddesign(containerid);
  28. }
  29. loaddesign(containerid) {
  30. var html = '<div class="h-40p w-320p mx-auto d-flex flex-row"><img src="https://pngimg.com/uploads/facebook_logos/facebook_logos_PNG19748.png" class="ml-1 py-1 w-5p h-5p img-fluid"><span class="ml-2 font-18 my-auto text-dark font-weight-500">Facebook</span></div><div class="d-flex w-320p mx-auto"><iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FexxonMobil&tabs=timeline&width=320&height=590&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="320" height="590" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe></div>';
  31. debugger;
  32. $("." + containerid).append(html);
  33. }
  34. static Instance() {
  35. if (this.instance === null || this.instance === undefined)
  36. this.instance = new Facebook();
  37. return this.instance;
  38. }
  39. }
  40. Remainders.Facebook = Facebook;
  41. })(Remainders = Components.Remainders || (Components.Remainders = {}));
  42. })(Components = Communications.Components || (Communications.Components = {}));
  43. })(Communications = Platform.Communications || (Platform.Communications = {}));
  44. })(Platform = Unibase.Platform || (Unibase.Platform = {}));
  45. })(Unibase || (Unibase = {}));