aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/scripts/controller/iframeController.js
blob: 007ed05703d503918d7cd8773c5389f6f3aa6b64 (plain)
1
2
3
4
5
6
7
"use strict";

var iframeController = function($scope, $location) {
    $scope.url = "app/ui/#" +  $location.$$url;
}

app.controller("iframeController", [ "$scope", "$location", iframeController ]);