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 Errors from './Errors.js' | |
class Form { | |
/** | |
* Create a new Form instance. | |
* | |
* @param {object} data | |
*/ | |
constructor(data) { | |
this.originalData = data; |
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
// Hat-tip to bulma | |
.loader { | |
color: transparent !important; | |
pointer-events: none; | |
position: relative; | |
} | |
.loader:after { | |
animation: spinAround 500ms infinite linear; | |
border: 2px solid #fff; |