- font-family
- font-size
- font-style
- font-variant
- font-weight
- font
- letter-spacing
- line-height
- white-space
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
type Date | |
type Time | |
type Timestamp | |
type Timezone = System | UTC | TimezoneData ... | |
type IntervalUnit = Millisecond | Second | Minute | Hour | Day | Month | Year | |
type Interval | |
type Locale | |
type Format | |
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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
actions: { | |
change() { | |
} | |
} | |
}); |
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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
actions: { | |
redirectToFoo() { | |
this.transitionToRoute('foo'); | |
} | |
} | |
}); |
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 Ember from 'ember'; | |
export default Ember.Component.extend({ | |
repositionStickyEditor: function () { | |
let top = -$(window).scrollTop(); | |
$('.sticky').css('transform', `translateY(${top <= 84 ? 8- top : 0}px) translateZ(0)`) | |
// this.repositionStickyEditor(); | |
// }); | |
}.on('didInsertElement'), |
I hereby claim:
- I am dremora on github.
- I am dremora (https://keybase.io/dremora) on keybase.
- I have a public key whose fingerprint is 9099 1B2A F23B 6BBD 3B4E FE65 7C95 050F F386 9535
To claim this, I am signing this object:
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
var input | |
// Synchronous code | |
var a_ = a(input) | |
var b_ = b(a_) | |
var output = c(b_) | |
// Synchronous code, short | |
var output = c(b(a(_))) |
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
var Backbone = require('backbone'); | |
var CollectionModel = Backbone.Model.extend({ | |
initialize: function () { | |
this.collection = new Backbone.Collection(); | |
}, | |
add: function () { | |
this.collection.add.apply(this.collection, arguments); | |
}, |
A Pen by Kirill Korolyov on CodePen.
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
define(function (require) { | |
require('hbs!./template'); | |
}); |