Skip to content

Instantly share code, notes, and snippets.

View opetznick's full-sized avatar

Oliver Petznick opetznick

View GitHub Profile
@opetznick
opetznick / content-pinning.js
Created November 6, 2020 10:52 — forked from Gozala/content-pinning.js
Content Pinning
class Model {
constructor(isShiftPressed=false, marker=null, selection=null) {
this.isShiftPressed = isShiftPressed
this.marker = marker
this.selection = selection
this.tasks = []
}
clone() {
const instance = new this.constructor()
Object.keys(this).forEach(key => instance[key] = this[key])
def default_url_options(options={})
options.merge({ :i18n_locale => I18n.locale })
end