New Angular UI from 1806
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / controller / iframeController.js
1 "use strict";
2
3 var iframeController = function($scope, $location) {
4     $scope.url = "app/ui/#" +  $location.$$url;
5 }
6
7 app.controller("iframeController", [ "$scope", "$location", iframeController ]);