我发布了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;
}
答案 0 :(得分:2)
angular@1.2支持的angular-toastr版本为0.3.0