This file contains 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
function bindValue(objectToBind) { | |
var elemToBind = document.getElementById(objectToBind.id) | |
elemToBind.addEventListener("change", function() { | |
objectToBind.value = this.value; | |
}) | |
} | |
function proxify(id) { | |
var handler = { | |
set: function(target, key, value, receiver) { |
This file contains 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
{ "space-after-combinator": 1, | |
"space-between-declarations": "\n ", | |
"space-after-colon": 1, | |
"space-after-opening-brace": "\n", | |
"space-after-selector-delimiter": 1, | |
"always-semicolon": true, | |
"color-case": "lower", | |
"element-case": "lower", | |
"leading-zero": false, | |
"quotes": "double", |