I hereby claim:
- I am billpull on github.
- I am billpull (https://keybase.io/billpull) on keybase.
- I have a public key ASAnKPctP_bKIvB6RC1841xeWz3rB_NC_hVpFcKiDLJFDwo
To claim this, I am signing this object:
const PositionProvider: React.FC = ({ children }) => { | |
const position = useCurrentPosition(); | |
return ( | |
<WatchLocationContext.Provider value={position}> | |
{children} | |
</WatchLocationContext.Provider> | |
); | |
}; |
I hereby claim:
To claim this, I am signing this object:
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
classNames:['cx-modal'], | |
attributeBindings: ['tabindex:tabindex','role:role'], | |
role:'dialog', | |
tabindex:0, | |
didRender(){ | |
this.$().children().first().focus(); | |
}, |
/*jshint node:true*/ | |
var stew = require('broccoli-stew'); | |
var Funnel = require('broccoli-funnel'); | |
var BroccoliMergeTrees = require('broccoli-merge-trees'); | |
var OPTIONAL_ROUTES = [ | |
'optional-1', | |
'optional-2' | |
]; |
#!/usr/bin/env node | |
var fs = require('fs'); | |
var path = require('path'); | |
var log = require('verbalize'); | |
var yaml = require('js-yaml'); | |
var Nightmare = require('nightmare'); | |
var Promise = require('q').Promise; | |
var argv = require('minimist')(process.argv.slice(2)); |
/* global require, module */ | |
var stew = require('broccoli-stew'); | |
var concat = require('broccoli-concat'); | |
var Funnel = require('broccoli-funnel'); | |
var replace = require('broccoli-string-replace'); | |
var mergeTrees = require('broccoli-merge-trees'); | |
var esTranspiler = require('broccoli-babel-transpiler'); | |
var HtmlbarsCompiler = require('ember-cli-htmlbars'); | |
var EmberApp = require('ember-cli/lib/broccoli/ember-app'); |
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
actions: { | |
renderTopLevel: function () { | |
this.sendAction('renderTopLevel'); | |
}, | |
renderPost: function () { | |
this.sendAction('renderPost'); | |
} |
@font-face { | |
font-family: 'eagle-bookregular'; | |
src: url('/fonts/WW/EAGLBK.eot'); | |
src: url('/fonts/WW/EAGLBK.eot?#iefix') format('embedded-opentype'), | |
url('/fonts/WW/EAGLBK.woff2') format('woff2'), | |
url('/fonts/WW/EAGLBK.woff') format('woff'), | |
url('/fonts/WW/EAGLBK.ttf') format('truetype'); | |
font-weight: bold; | |
font-style: normal; | |
} |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
/*CUSTOM*/ | |
body{ | |
#HeaderBar { | |
background: none; | |
margin-bottom: 0; |