I think @machineghost is right, this is a bug in the developer tools. The "correct" output is the DOM entry: <div id="master" class="container"></div> . However, when the view is instantiated, the .el property .el resolved from the selector string to the DOM element. Another notation you see is the selector line for the created view.
Although a selector string is used during instance creation, the el property is always set to the DOM element, each time using a detached <div> if no other option is provided.
arbuthnott
source share