- one
- two
- three
This file contains 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
.intercom-lightweight-app .intercom-lightweight-app-launcher, | |
#intercom-container div:has(> iframe[name="intercom-launcher-frame"]) { | |
bottom: 80px; | |
} |
This file contains 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
{ | |
"neighborhood": "Fitzrovia", | |
"restaurants": [ | |
{ | |
"id": "63460", | |
"name": "Burrito Kitchen", | |
"image": "https://f.roocdn.com/images/menus/25785/header-image.jpg?width=360&height=200&auto=webp&format=jpg&fit=crop&v=1477308353", | |
"url": "https://deliveroo.co.uk/menu/london/bank/burrito-kitchen-cheapside", | |
"price": 2, | |
"tags": [ |
This file contains 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
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import styles from './styles.scss'; | |
export default function Banner({ title, message }) { | |
return ( | |
<div className={styles.banner}> | |
{title && <h3 className={styles.title}>{title}</h3>} | |
<p className={styles.message}>{message}</p> | |
</div> |
This file contains 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
export function startRestaurantsSearch(shouldAutoLoadScheduled = true) { | |
return (dispatch, getState) => { | |
if (getState().restaurants.deliveryTime) { | |
return dispatch(loadScheduled()); | |
} | |
return dispatch(loadAsap()).then(() => { | |
if (shouldAutoLoadScheduled) { | |
return dispatch(loadScheduled()); | |
} | |
}); |
This file contains 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
{ | |
"links": { | |
"self": "https://test.deliveroo.co.uk/orderapp/v2/restaurants?page=asap", | |
"next": "https://test.deliveroo.co.uk/orderapp/v2/restaurants?page=scheduled" | |
}, | |
"data": [ | |
{ | |
"id": 22656, | |
"type": "restaurant", | |
"attributes": { |
This file contains 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
/*@cc_on | |
@if (@_jscript_version <= 9) | |
(function(f){ | |
window.setTimeout = f(window.setTimeout); | |
window.setInterval = f(window.setInterval); | |
})(function(f){return function(c,t){var a=[].slice.call(arguments,2);return f(function(){c.apply(this,a)},t)}}); | |
@end | |
@*/ | |
(function(window) { | |
var lastTime, vendors; |
This file contains 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
#!/bin/bash | |
set -e | |
REPO_PATH='govuk_frontend_toolkit' | |
echo "Add config for alphagov/$REPO_PATH" | |
git config --global user.name "Travis CI" | |
git config --global user.email "[email protected]" | |
git remote add origin_ssh [email protected]:REPO_PATH.git |
This file contains 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
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] |
This file contains 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
[ | |
{ | |
"userName": "alphagov", | |
"repo": "govuk_frontend_toolkit" | |
}, | |
{ | |
"userName": "alphagov", | |
"repo": "govuk_frontend_toolkit_npm" | |
}, | |
{ |
NewerOlder