/*
Made by [egy.js](https://www.instagram.com/egy.js/);
*/
install it on your localhost and try it :
| details summary { | |
| cursor: pointer; | |
| outline: none !important; | |
| display: inline-block; | |
| padding: 8px 12px; | |
| padding-top: 10px; | |
| border-radius: 4px; | |
| overflow: hidden; | |
| background: #F09825; | |
| color: white; |
| <IfModule mod_rewrite.c> | |
| <IfModule mod_negotiation.c> | |
| Options -MultiViews -Indexes | |
| </IfModule> | |
| RewriteEngine On | |
| RewriteBase / # <= add this | |
| # Handle Authorization Header | |
| RewriteCond %{HTTP:Authorization} . |
| function TurbolinksPrefetcher() { | |
| this.hoverTime = 400; | |
| this.fetchers = {}; | |
| this.doc = document.implementation.createHTMLDocument('prefetch'); | |
| } | |
| TurbolinksPrefetcher.prototype.fetchPage = function (url, success) { | |
| var xhr = new XMLHttpRequest(); | |
| xhr.open('GET', url); |
| // Automatically bind internal links to `up-follow` behaviour | |
| // Unpoly will already catch and handle links with explicit `up-follow` etc, | |
| // so we are safe to assume that if our handler below is triggered, the link | |
| // doesn't already have an up- attribute. | |
| // | |
| // Scenarios to handle: | |
| // Hat-tip to https://github.com/instantpage/instant.page/blob/master/instantpage.js | |
| // ✅ cmd+click | |
| // ✅ empty links | |
| // ✅ links to another domain |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Ionic App</title> | |
| <base href="/" /> | |
| <meta | |
| name="viewport" |
| console.table((function listAllEventListeners() { | |
| const allElements = Array.prototype.slice.call(document.querySelectorAll('*')); | |
| allElements.push(document); // we also want document events | |
| const types = []; | |
| for (let ev in window) { | |
| if (/^on/.test(ev)) types[types.length] = ev; | |
| } | |
| let elements = []; | |
| for (let i = 0; i < allElements.length; i++) { |
| /* -------------------------------------------------------------------------- */ | |
| // All Bootstrap 4 Sass Mixins [Cheat sheet] | |
| // Updated to Bootstrap v4.4.x | |
| // @author https://anschaef.de | |
| // @see https://github.com/twbs/bootstrap/tree/master/scss/mixins | |
| /* -------------------------------------------------------------------------- */ | |
| // Grid variables | |
| $grid-columns: 12; | |
| $grid-gutter-width: 30px; |
/*
Made by [egy.js](https://www.instagram.com/egy.js/);
*/
install it on your localhost and try it :
This is a list of HAFAS API endpoints, all with different data versions, API versions, output formats and URL configurations. Help me complete this list!
Why?
This:
.action {
@extend .ml-3;
}