-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A few small path changes/ fixed to use abs paths not relative paths, …
…/static vs static,
- Loading branch information
1 parent
79db34c
commit 7436265
Showing
5 changed files
with
20 additions
and
11 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
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
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
7436265
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.
#38 webcam submitting "should" work now
7436265
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.
oh that is so awesome @Jackywathy
😭 gimme a bit of time and ill come back to all this <3
7436265
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.
ooh what's the difference between using absolute and relative paths?
7436265
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.
its in the name
relative paths use things like . and .. to represent current directory and previous directory (respectively)
whereas absolute paths require the entire link from the base
your browser will parse paths in certain ways.
you might notice if you inspect elements in chrome and edit some of the hyperlinks, you'll find that links such as '/test' will re-direct to "github.com/test"
whereas links without a beginning slash will work relatively to where you currently are on the website
and so, clicking a link that hyperlinks to "test" will redirect from "github.com/here/I/am" to "github.com/here/I/test"
the use cases depend on what you're doing, so play around :)
7436265
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.
@ekohilas oooh, thanks so much Evan!! 😊😄😄 ah okay, I can see a lot from what you've said☺️