summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js
blob: 518880c782339a5c03ecc88fe073f9cda72b39b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
app.config(function($routeProvider) {
	$routeProvider
	.when('/iframe', {
		templateUrl: 'app/fusionapp/scripts/view-models/sampleWithIframe.html',
		controller : "samplePageWithIframeController"
	})
	.otherwise({
		templateUrl: 'app/fusionapp/scripts/view-models/sample.html',
		controller : "samplePageController"
	});
});