-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #962 from codeRIT/develop
Bring improvements in resolution handling to master
- Loading branch information
Showing
7 changed files
with
334 additions
and
297 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,19 @@ import PreRegister from './preregister'; | |
import 'bootstrap/dist/css/bootstrap.css'; | ||
import './index.scss'; | ||
|
||
const hiringMessage = `Hey, you. | ||
You’re finally awake. | ||
You were trying to see the code, right? | ||
Walked right into that hiring message, same as us. | ||
If you’d like to work on this website and other cool projects with hackathons, send an email over to [email protected]!` | ||
|
||
console.log(hiringMessage); | ||
|
||
//comment generated via javascript instead of in HTML so the hiring message text is only in one place | ||
const comment = document.createComment("\n"+hiringMessage.toString()+"\n"); | ||
document.insertBefore(comment, document.firstChild); | ||
|
||
ReactDOM.render( | ||
<PreRegister/>, | ||
document.getElementById('root'), | ||
); | ||
|
Oops, something went wrong.