発行しtoastr.error("a message")
ましたが、このエラーが発生しました。_setContainer
すると発生し$animate.enter().then(function())
ます。私は何が欠けていますか?
function _setContainer(options) {
if(container) { return containerDefer.promise; } // If the container is there, don't create it.
container = angular.element('<div></div>');
container.attr('id', options.containerId);
container.addClass(options.positionClass);
container.css({'pointer-events': 'auto'});
var body = $document.find('body').eq(0);
$animate.enter(container, body).then(function() {
containerDefer.resolve();
});
return containerDefer.promise;
}