mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-03-30 23:18:53 +08:00
The previous solution for opening Plunkers from the docs relied on tight coupling between the docs site and the plunkr site, in particular the URL to the example code on the docs server was hard coded in the Plunker site. This change goes back to the old POST method of creating a Plunker, but with a subtle difference: In the very old docs, the content was injected directly into the example HTML at build time. This was easy enough to do as the example actually ran in the current page but also increased the size of the doc page. The new examples are run in completely separate iframes. This new version of showing a Plunker loads the file content for the Plunker from the server by accessing the example's manifest.json file using $http requests. This also has the additional benefit that you can now generate plunkers from examples that are running locally or, frankly, in any folder on any server, such as personal builds on the Jenkins CI server. Closes #7186 Closes #7198
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
describe("DocsController", function() {
|
|
var $scope;
|
|
|
|
angular.module('fake', [])
|
|
.value('$cookies', {})
|
|
.value('openPlunkr', function() {})
|
|
.value('NG_PAGES', {})
|
|
.value('NG_NAVIGATION', {})
|
|
.value('NG_VERSION', {});
|
|
|
|
beforeEach(module('fake', 'DocsController'));
|
|
beforeEach(inject(function($rootScope, $controller) {
|
|
$scope = $rootScope;
|
|
$controller('DocsController', { $scope: $scope });
|
|
}));
|
|
|
|
|
|
describe('afterPartialLoaded', function() {
|
|
it("should update the Google Analytics with currentPage path if currentPage exists", inject(function($window) {
|
|
$window._gaq = [];
|
|
$scope.currentPage = { path: 'a/b/c' };
|
|
$scope.afterPartialLoaded();
|
|
expect($window._gaq.pop()).toEqual(['_trackPageview', 'a/b/c']);
|
|
}));
|
|
|
|
|
|
it("should update the Google Analytics with $location.path if currentPage is missing", inject(function($window, $location) {
|
|
$window._gaq = [];
|
|
spyOn($location, 'path').andReturn('x/y/z');
|
|
$scope.afterPartialLoaded();
|
|
expect($window._gaq.pop()).toEqual(['_trackPageview', 'x/y/z']);
|
|
}));
|
|
});
|
|
}); |