Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ not IE 9-11
not kaios 2.0-3.1
not and_qq 14.9
not and_uc 15.5
not android 138
not op_mob 80
not opera 116-117
not samsung 27-28

not opera 116-123
not samsung 27-29
not android 99-145
4,599 changes: 2,557 additions & 2,042 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/app/components/navbar/navbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class NavbarComponent implements OnInit {
this.noOpener = true;
openerMessage = 'Displaying pop out link';
}
console.info(openerMessage);
//console.info(openerMessage);
}

openScrumTimer() {
Expand All @@ -48,13 +48,13 @@ export class NavbarComponent implements OnInit {
}

openWindows() {
console.debug('Opening windows');
//console.debug('Opening windows');
this.openJira();
this.openScrumTimer();
}

ngOnInit() {
console.log('[Scrumtimer] Navbar init');
//console.log('[Scrumtimer] Navbar init');
}

}
2 changes: 1 addition & 1 deletion src/app/components/settings/settings.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('SettingsComponent', () => {
});

it('should save settings - remote participant list', () => {
const url = 'https://josste.github.io/ScrumTimer/assets/json/participants_andeby.json';
const url = 'assets/json/participants_andeby.json';
component.remoteParticipantListURL = url;
component.useRemoteParticipantList = true;
component.saveSettings();
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/timer/timer.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('TimerComponent', () => {
component.participantList.push(new Participant('AA', 'Anders And'));
component.participantList.push(new Participant('DSY', 'Andersine And'));
}
console.info("Participantlist Length:\t" + component.participantList.length);
//console.info("Participantlist Length:\t" + component.participantList.length);
});
// TODO: improve tests https://angular.io/guide/testing-components-basics
it('should create', () => {
Expand All @@ -57,7 +57,7 @@ describe('TimerComponent', () => {
});

it('Has some Participants, but none done, none absent as default', () => {
console.log(component.participantList.length);
//console.log("Number of participants" + component.participantList.length);
expect(component.participantList.length).toBeGreaterThan(0);
expect(component.doneParticipants.length).toEqual(0);
expect(component.absentParticipants.length).toEqual(0);
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/timer/timer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class TimerComponent implements OnInit {
} else {
this.individualTime = this.individualMaxTime;
}
console.info('[Scrumtimer] Timer init');
//console.info('[Scrumtimer] Timer init');
if(this.activatedRoute['_routerState'].snapshot.url === '/popin'){
this.nav.hide();
}else{
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/participant/participant.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class ParticipantService {
getLastSync() {
const localSync = localStorage.getItem('lastSync');
if (localSync == null) {
console.debug('never synced');
//console.debug('never synced');
} else {
console.info('Last sync: ' + localSync);
}
Expand Down