Created
January 14, 2015 14:52
-
-
Save cyrilchampier/f2f5d0de52c6b73f7ed4 to your computer and use it in GitHub Desktop.
previous_changes not cleared on autosave
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
> m.display_configuration.are_shadows_enabled = true | |
> m.save | |
> m.display_configuration.previous_changes | |
=> {"are_shadows_enabled"=>[false, true] ... | |
> m.save | |
> m.display_configuration.previous_changes | |
=> {"are_shadows_enabled"=>[false, true] ... | |
> m.display_configuration.save | |
> m.display_configuration.previous_changes | |
=> {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment