Angularjs-toaster始终在右上方显示Toast通知

ng-*_*g-R 6 angularjs toastr angularjs-directive ngtoast

我有这个示例html文件.我在这里使用角度吐司通知.我面临的问题是Toast消息总是出现在右上角位置.

script.js文件包含

    angular.module('main', ['ngAnimate', 'toaster']).controller('myController', function($scope,toaster, $window) {

        $scope.pop = function(){
            toaster.pop('success', "title", 'message');
        };

        $scope.clear = function(){
            toaster.clear();
        };
    });
Run Code Online (Sandbox Code Playgroud)

请找到plunker链接http://plnkr.co/edit/pzuW5OVkoxLF7zl0mGaC?p=preview

提前致谢

Mat*_*t M 11

在您想要的选项中:position-class不是positionClass.