Skip to content

Commit

Permalink
new tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
palamago committed Jun 8, 2018
1 parent fb5cb44 commit 64a658b
Show file tree
Hide file tree
Showing 5 changed files with 249 additions and 131 deletions.
1 change: 1 addition & 0 deletions app/app.html
Expand Up @@ -48,6 +48,7 @@
<script src="config.js"></script>

<script src="https://unpkg.com/ng-table@2.0.2/bundles/ng-table.min.js"></script>

<!-- build:js({.tmp,app}) scripts/scripts.js -->
<script src="scripts/libs/d3.sankey.js"></script>
<script src="scripts/app.js"></script>
Expand Down
8 changes: 7 additions & 1 deletion app/scripts/app.js
Expand Up @@ -14,7 +14,8 @@ angular
$logProvider,
$httpProvider,
$locationProvider,
$provide
$provide,
$sceDelegateProvider
) {
$routeProvider
.when("/home", {
Expand Down Expand Up @@ -51,6 +52,11 @@ angular
return $delegate;
}
]);

$sceDelegateProvider.resourceUrlWhitelist([
'self', // trust all resources from the same origin
'*://ws.usig.buenosaires.gob.ar/**' // trust all resources from `ws.usig.buenosaires.gob.ar`
]);
})
.service("DataService", function($http, $q, Slug, $sce) {
var data, dataMapas;
Expand Down

0 comments on commit 64a658b

Please sign in to comment.