Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to take an angular application that works fine on my own domain and 'embed' it into several other sites.

The app uses partials with the ng_view directive so that the only thing i need to do to 'inject' my app into one of my pages is...

<div ng-app="myapp" ng-view></div>

My app looks like this...

angular.module('myapp', ['myapp.filters', 'myapp.services', 'myapp.directives', 'ui']).
config(['$routeProvider', function($routeProvider) {
    $routeProvider.otherwise({templateUrl: 'partials/mainTemplate.html', controller: myController});
}]);

this works fine, but when I try to 'inject' the app into another site, In addition to externalizing the script references, I changed the app to look like this...

angular.module('myapp', ['myapp.filters', 'myapp.services', 'myapp.directives', 'ui']).
config(['$routeProvider', function($routeProvider) {
    $routeProvider.otherwise({templateUrl: ''http://mydomain.com/partials/mainTemplate.html', controller: myController});
}]);

But it doesn't work... no errors, no nothing, it just doesn't render my app.

Any ideas? are external partial references allowed?... is the browser being over-protective? Should I take a completely different approach??

share|improve this question
I don't think the http partial reference is allowed. – Andy Joslin Jul 21 '12 at 16:11
1  
My guess would be that your running into issues with the same origin policy but this should be producing errors in your Javascript console (at least in Webkit). – Noah Freitas Jul 23 '12 at 15:53
Michael, did you discover a solution to this problem? I'm running into a similar issue. – JStark May 9 at 20:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.