I hereby claim:
- I am san650 on github.
- I am san650 (https://keybase.io/san650) on keybase.
- I have a public key ASAEQRVVXD0sEdA86hrFx2Jp2QpzktCANnKjxfFhMal6Xwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| RED=$(printf "\033[31m") | |
| GREEN=$(printf "\033[32m") | |
| GRAY= | |
| CLOSING=$(printf "\033[m") | |
| function color_not_ok() { | |
| sed "/^not ok/{; s/^/${RED}/; s/$/${CLOSING}/; }" | |
| } |
| Category | Line Item | Folder | Responsible Groups | |
|---|---|---|---|---|
| Category 1 | ||||
| Line item 1 | BC | |||
| Folder 1 | ||||
| Line item 2 | ||||
| Category 2 | ||||
| Line item 3 | SU |
| Copyright (c) $YEAR$ $AUTHOR$ and other contributors | |
| This software consists of voluntary contributions made by many | |
| individuals. For exact contribution history, see the revision history | |
| available at $GITHUB_URL$ | |
| The following license applies to all parts of this software except as | |
| documented below: | |
| ==== |
| // ID:ember-cli-page-object.comma-separated-selectors | |
| // Comma separated selectors are not supported in ember-cli-page-object. These selectors are going to throw an error in ember-cli-page-object v2.0. | |
| // BAD | |
| // <h1>A big title</h1> | |
| // <h2>A smaller title</h2> | |
| import { create, text } from "ember-cli-page-object"; |
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| classNames: ['move-me'], | |
| classNameBindings: ['movable'], | |
| attributeBindings: ['style'], | |
| mouseDown() { | |
| this.set('moving', true); | |
| this.set('movable', true); |
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
| import Ember from 'ember'; | |
| const { computed } = Ember; | |
| export default Ember.Component.extend({ | |
| tagName: 'form', | |
| // Predicates | |
| isProcessing: false, | |