Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Fixed small error, missing "+"
Browse files Browse the repository at this point in the history
  • Loading branch information
DCruzDev committed Apr 24, 2019
1 parent 98047f0 commit 703ab25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Features para adicionar:

Chrome: [Webstore Link](https://chrome.google.com/webstore/detail/paco-ua-extension/lcgdmdafgpgplkiaiifgamdkcnpnnopp)

Firefox: [Download signed extension](https://github.com/DCruzDev/paco_ua_extension/releases/)
Firefox: [Download signed extension](https://github.com/DCruzDev/paco_ua_extension/releases/latest)
2 changes: 1 addition & 1 deletion js/examsCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function parseRow(row){
//Create link
link = new URL("https://www.google.com/calendar/render");
link.searchParams.append("action", "TEMPLATE");
link.searchParams.append("text", "[" + disciplina "] " + epoca);
link.searchParams.append("text", "[" + disciplina + "] " + epoca);
datestart = data.toISOString().replace(/-|:|\.\d\d\d/g,"");
data.setHours(data.getHours() + 2);
dateend = data.toISOString().replace(/-|:|\.\d\d\d/g,"");
Expand Down

0 comments on commit 703ab25

Please sign in to comment.