-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pradeepgokul-patch #1063
pradeepgokul-patch #1063
Conversation
Edited cards.js
- 22:9 error Unexpected var, use let or const instead no-var - 24:9 error Unexpected console statement no-console - 24:21 error Unexpected string concatenation prefer-template - 24:21 error Strings must use singlequote quotes - 62:7 error 'CardEstimate' is defined but never used no-unused-vars - tried fixing this but not sure what the error is. - 87:4 error Missing trailing comma comma-dangle - 88:2 error Newline required at end of file but not found eol-last
Edited cards.js
- 22:9 error Unexpected var, use let or const instead no-var - 24:9 error Unexpected console statement no-console - 24:21 error Unexpected string concatenation prefer-template - 24:21 error Strings must use singlequote quotes - 62:7 error 'CardEstimate' is defined but never used no-unused-vars - tried fixing this but not sure what the error is. - 87:4 error Missing trailing comma comma-dangle - 88:2 error Newline required at end of file but not found eol-last
* zero was being accepted but not displayed, * float point numbers weren't accepted * the size of the fields were all strange, now they've been fixed and aligned properly
Feature: Hourly Estimate for Cards
* also filtered out hidden boards on `BoardsList.jade`
* subBoardId and subBoardSlug need to be stored, * new `mutations` needed as well
Sub-Board Preliminary Delivery
* fixes issue where Board List doesn't show any boards on startup
SubBoard bugfixes
Credit to https://css-tricks.com/css3-progress-bars/ for design
Update 'devel' to `v0.12 2017-03-05 Wekan` release
ProgressBar Delivery
|
Please close this pull request and create new one with these changes already there:
|
I did start fix all those myself but I got lost with all the errors. |
@@ -7,6 +7,9 @@ head | |||
difficult to do that cleanly with Blaze -- at least without adding extra | |||
packages. | |||
link(rel="shortcut icon" href="/wekan-favicon.png") | |||
script(src="https://use.typekit.net/sye2guq.js") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should reference an internal file (same origin as wekan server) instead of an external file in order to:
- protection of private life
- security issues
- instability due to an external update of the file
- possibility to use wekan in a closed network
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not reference an external file
This change is