Closed kishaningithub closed 9 years ago
In the line var container = angular.element(config.container || document.body),
i think you can modify like
var container = angular.element(config.container || ngView || document.body),
Put the pseudocode since i dont know how to get ngView dom element
To achieve that, you can just specify the ngView as the container. We don't want the ngView to be the default if no container is specified.
ngView
container
In the line var container = angular.element(config.container || document.body),
i think you can modify like
var container = angular.element(config.container || ngView || document.body),
Put the pseudocode since i dont know how to get ngView dom element