Hi I am calling in angular.js to a template saved in templates folder in flask but not works, how can I get static files in js from flask?
var app = angular.module('app', ['ngTouch', 'ui.grid', 'ui.grid.expandable', 'ui.grid.selection', 'ui.grid.pinning', 'ui.grid.pagination']);
app.controller('ThirdCtrl', ['$scope', '$http', '$log', function ($scope, $http, $log) {
$scope.gridOptions = {
paginationPageSizes: [25, 50, 75],
paginationPageSize: 25,
expandableRowTemplate: "/templates/expandableRowTemplate.html",
...