Skip to content

Instantly share code, notes, and snippets.

@noelrappin
Last active August 4, 2017 19:48
Show Gist options
  • Save noelrappin/059489844bd84e2f33b4cef497e295cb to your computer and use it in GitHub Desktop.
Save noelrappin/059489844bd84e2f33b4cef497e295cb to your computer and use it in GitHub Desktop.
class Editable {
constructor(text) {
@text = text
@originalText = ""
@status = "notEditing"
}
startEdit {
@status = "editing"
@originalText = @text
}
cancel {
@status = "notEditing"
@text = @originalText
@originalText = ""
}
save {
@status = "notEditing"
@originalText = ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment