mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-05 13:16:03 +02:00
Fixed a bug where if you check a box in the poll before you right your name it does not get saved to the server
5 lines
162 B
JavaScript
5 lines
162 B
JavaScript
angular.module('rallly')
|
|
.controller('AboutCtrl', function(){
|
|
$(".nav-link").removeClass('active');
|
|
$(".nav-link[href='/about']").addClass('active');
|
|
});
|