This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var iframe = document.getElementById('abembed') | |
| var match = document.URL.match(/result=([a-z0-9]+)/i) | |
| if(match) { | |
| iframe.src = 'https://en.actionbound.com/result/' + match[1] + '?t=wilderwander' | |
| } | |
| else { | |
| console.error("cant find result in url", document.URL) | |
| } | |
| iFrameResize({heightCalculationMethod: 'bodyScroll'}, '#abembed') | |
| window.addEventListener("message", function(e) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var toast=function(msg){ | |
| $("<div class='ui-loader ui-overlay-shadow ui-body-e ui-corner-all'><h3>"+msg+"</h3></div>") | |
| .css({ display: "block", | |
| opacity: 0.90, | |
| position: "fixed", | |
| padding: "7px", | |
| "text-align": "center", | |
| width: "270px", | |
| left: ($(window).width() - 284)/2, | |
| top: $(window).height()/2 }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| entweder du nimmst den link vom icon weg | |
| .accordion-heading | |
| i(class="icon-#{module.icon}") | |
| | | |
| a.accordion-toggle(data-toggle="collapse", href="##{module.type}") #{module.title} | |
| oder du brauchst zwei a tags | |
| .accordion-heading |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .accordion-toggle > i { | |
| margin-top: 2px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .accordion-group | |
| .accordion-heading | |
| a.accordion-toggle(data-toggle="collapse", href="##{module.type}") | |
| i(class="icon-#{module.icon}") | |
| | #{module.title} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Bootstrap, from Twitter</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <link href="../assets/css/bootstrap.css" rel="stylesheet"> | |
| <style type="text/css"> |