Created
August 22, 2015 16:20
-
-
Save DaveVoyles/2da9666e60ce0863ad9d 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
Object.observe(current, | |
function (changes){ | |
if (changes[1]!== undefined) { | |
console.log('Changes: ', changes[1].name ); | |
console.log('Old Val: ', changes[1].oldValue); | |
} | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment