1
0
mirror of https://github.com/fazo96/ipfs-boards synced 2025-04-03 01:38:39 +02:00
ipfs-boards/static/app.js
Enrico Fasoli 110000beef wip
2015-11-09 17:12:11 +01:00

25 lines
603 B
JavaScript

console.log(require('ipfs-api'))
var boards = angular.module('boards',['ui.router'])
boards.config(function($stateProvider,$urlRouterProvider,$locationProvider){
$urlRouterProvider.otherwise('/')
//$locationProvider.html5Mode({ enabled: true, requireBase: false })
$stateProvider.state('home',{
url: '/',
templateUrl: 'home.html',
controller: function($scope){
}
})
$stateProvider.state('board',{
url: '/board/:name',
templateUrl: 'board.html',
controller: function($scope,$stateParams){
$scope.posts = [ "hey", "test", "something" ]
}
})
})