angular-carousel icon indicating copy to clipboard operation
angular-carousel copied to clipboard

Error: scope.$eval(...) is undefined

Open vitotafuni opened this issue 8 years ago • 2 comments

Error: scope.$eval(...) is undefined .compile/<@...bower_components/angular-carousel/dist/angular-carousel.js:456:61

If you remove scope.$eval the error is done.

vitotafuni avatar Dec 21 '15 16:12 vitotafuni

Same Error. While building i have given in bower.json

"overrides": {
    "angular-carousel": {
      "main": [
        "dist/angular-carousel.min.js",
        "dist/angular-carousel.min.css"
      ]
    }
}

rn-carousel only is working other directives are not working.

smartameer avatar Jan 04 '16 16:01 smartameer

I had the same issues and it happened because my (async) model was not loaded yet.

Adding a ng-if="MYMODEL.length > 0" on the ng-carousel div solved the problem.

BenjaminPiette avatar Sep 25 '16 20:09 BenjaminPiette