-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
97 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('extrafunController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Extra Fun!'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('italyController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Italy'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('transfersController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Best Transfers'); | ||
}); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
static/javascripts/controllers/socialnetwork/degreeController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('degreeController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Degree Distribution'); | ||
}); |
6 changes: 6 additions & 0 deletions
6
static/javascripts/controllers/socialnetwork/influentialController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('influentialController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Most Influential Players'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
static/javascripts/controllers/socialnetwork/loyalController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('loyalController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Old Players Are More Loyal'); | ||
}); |
6 changes: 6 additions & 0 deletions
6
static/javascripts/controllers/socialnetwork/paradoxController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('paradoxController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Friendship Paradox'); | ||
}); |
6 changes: 6 additions & 0 deletions
6
static/javascripts/controllers/socialnetwork/playerindexController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('playerindexController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Lord Bendtner Index'); | ||
}); |
8 changes: 1 addition & 7 deletions
8
...ts/controllers/socialnetworkController.js → .../socialnetwork/socialnetworkController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
app.controller('socialnetworkController', function ($scope, $http, $location, $routeSegment, Page, socialnetworkService) { | ||
app.controller('socialnetworkController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Social Network'); | ||
|
||
$scope.init = function() { | ||
|
||
}; | ||
|
||
$scope.init(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('marketvalueController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Market Value'); | ||
}); |
6 changes: 6 additions & 0 deletions
6
static/javascripts/controllers/wiki/playerpositionController.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('playerpositionController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Player Position'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('wikiController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('Wikipedia Pages'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app.controller('wordcloudController', function ($scope, $http, $location, $routeSegment, Page) { | ||
$scope.Page = Page; | ||
$scope.$routeSegment = $routeSegment; | ||
|
||
Page.setTitle('WordCloud'); | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters