Created
August 27, 2019 21:14
-
-
Save debugmodedotnet/07a51528c3944c7b0c8076df5b1bff50 to your computer and use it in GitHub Desktop.
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
set: function (newvalue) { | |
value = newvalue; | |
elements.forEach(e => { | |
if (e.getAttribute('data-geek97-bind') === bindingProperty) { | |
if (e.type === 'text') { | |
e.value = newvalue | |
} | |
else if (!e.type) { | |
e.innerHTML = newvalue | |
} | |
} | |
}) | |
}, | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment