The system should always keep users informed about what is going on, through appropriate feedback within reasonable time.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| // colors | |
| $red: #bd7386; | |
| $tan-light: #e8e6e2; | |
| $tan-dark: #b7b0a5; | |
| $blue: #9bc7df; | |
| $blue-dark: #1d5f83; | |
| $black: #1e1e1e; | |
| $white: #ffffff; |
Add the following to the catalog search form (before the <form> element)
<div style="background-color:#910029;color:#fff;margin-bottom:5px;padding:5px;">
{{ yr warning text }}
</div>
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
| import React from 'react' | |
| import fields from './work-fields' | |
| class FieldSelect extends React.Component { | |
| constructor (props) { | |
| super(props) | |
| this.state = { | |
| selected: {} | |
| } |
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"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style> | |
| progress { display: block; } | |
| progress:empty { display: none; } | |
| </style> |
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
| const Raspi = require('raspi-io') | |
| const five = require('johnny-five') | |
| const board = new five.Board({ | |
| repl: false, | |
| io: new Raspi(), | |
| }) | |
| const SlackClient = require('@slack/client').WebClient | |
| const Slack = new SlackClient('<slack client token>') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.