How do I access the KnockOut ViewModel variables in the Chrome console now that I am using RequireJS?
Before using RequireJS, I followed a namespacing pattern, hiding ev
Require is all about not having globals:
require(["knockout"],function(ko){ window.ko=ko;});
is introducing globals again
You can use this in the console:
require("knockout").dataFor($0); require("knockout").contextFor($0);