Commit 6d8edacd authored by santiaago's avatar santiaago
Browse files

sketleton 2

parent 19c6a4bb
Loading
Loading
Loading
Loading
+0 −0

File moved.

app/app.css

0 → 100644
+30 −0
Original line number Diff line number Diff line
/* app css stylesheet */

.menu {
  list-style: none;
  border-bottom: 0.1em solid black;
  margin-bottom: 2em;
  padding: 0 0 0.5em;
}

.menu:before {
  content: "[";
}

.menu:after {
  content: "]";
}

.menu > li {
  display: inline;
}

.menu > li:before {
  content: "|";
  padding-right: 0.3em;
}

.menu > li:nth-child(1):before {
  content: "";
  padding: 0;
}

app/app.css~

0 → 100644
+0 −0

Empty file added.

app/app.js

0 → 100644
+12 −0
Original line number Diff line number Diff line
'use strict';

// Declare app level module which depends on views, and components
angular.module('myApp', [
  'ngRoute',
  'myApp.view1',
  'myApp.view2',
  'myApp.version'
]).
config(['$routeProvider', function($routeProvider) {
  $routeProvider.otherwise({redirectTo: '/view1'});
}]);

app/app.js~

0 → 100644
+0 −0

Empty file added.

Loading