Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Commit

Permalink
Publish latest changes (#642)
Browse files Browse the repository at this point in the history
* add missing closing curly brackets to constructor (#596)

* Param order cleanup (#599)

Not a huge deal but just thought it was cleaner to have the orders be consistent :)

* Update crowdsale.md (#600)

I was getting a warning about unused local variables and was unable to compile this code in the Ethereum Wallet app. This fixes that problem and (I think) still does everything else correctly.

* Add prerequisites and correct minor typos. (#598)

* It was a bit confusing to hop into this tutorial right away without the context on (1) having installed geth and (2) the smart contract file type / compiler etc.
* Couple of minor typos

* Update links for the Parity client (#607)

Links to parity.io and parity.io/parity were outdated. Company renamed itself from Ethcore to Parity Technologies.

* Remade the presale ether checker to use the actual genesis (#604)

* keep track of balance for multiple coin purchases (#603)

Without the `+`, the `balanceOf` mapping only keeps track of the last purchase an account makes. 

I.e, if an account participates in the crowdsale multiple times, the coin sale fails and an account asks for a refund, the account won't get all of its Ether back.

* Minify vendor scripts (#594)

* Merge gh pages (#608)

* gh-pages build

* Update github pages (#288)

* updated token

* fix link from homepage

* adds security issue to the token code

* updates to the readme

* Bump to 0.7.6

* update Bernd Lapp bio

* typo

* bump version to 8.1

* Separated Approve and Approve And Call

* Updated README with GitHub pages instructions

* Just like before (#284)

removed an errant you

* update to 0.8.2 and removes mix

* Update Google Analytics tracking ID (#286)

* Update Build 0.8.2

* added v to download link

* update Ethereum Wallet links to 0.8.6

* added geth binaries

* test file

* removed binaries

* added mist geth binaries

* removed binaries

* Timelock and payable daos

* update to 0.8.8

* build

* merge and build

* Updated build

* Update foundation.md

* Update foundation.md

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Removed link to the legal notice

* updated build

* Updated build (#602)

* merge

* megre and build

* remove devcon1 content

* Fix 404 (#611)

To reflect current ethereum/homestead-guide#305 / The [cpp-ethereum documentation](http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/index.html)

* Add link to solidity install instructions (#610)

At this point in the tutorial it is likely that the reader does not have solidity installed, so it probably makes sense to link to where/how to install it. I've included one link I found but if there is a better link that could be included as well. It seems other parts of this page may be out of date but this sentence should help.

* ensure privacy, cookies and terms and built

* Small grammatical fix

* Replace throw with 0.4.10 require syntax

* add allowance update to burnFrom (#619)

* add allowance update to burnFrom

burnFrom method should also update sender's allowance. Otherwise, it can burn as much as it wants.

* improved language as requested

* Added href to tipjar address + fixed typo (#628)

Bitcoin address had link to blockchain explorer, but not Ether address. Also Bitcoins -> Bitcoin typo fixed

* Cleaned up the code examples and changed a couple of sentences. (#624)

* Remove final throw() functions in the token example (#631)

* Removed final throws from the token example

* Update pragma

* Final pragma change

* Removed unneeded function

* Update token.md (#637)

* Fix dao md: "The Blockchain Congress" chapter. (#622)

* fix function name 'Change Membership' to 'Add Member'.

* fix deploy problem.
I can not deploy example code on Ethereum Wallet v0.8.10.
Because of removed line.

* fix description of `Add Member`.

* fix old icon name `Deposit` to `Transfer Ether & Tokens`

* fix description of "Execute contract" popup.

* fix contract name `democracy contract` to `congress contract`.

* fix `addMember` function in Congress contract.

* fix `addMember` function in TimeLockMultisig contract also.

* Fix basic token contract for updated solidity (#621)

Also, refactors some repeated code into an internal function

* Add draft for a page about the wallet software (#616)

* Add draft for a page about the wallet software

* Update according to review

* Update to Donation Page (#639)

* gh-pages build

* Update github pages (#288)

* updated token

* fix link from homepage

* adds security issue to the token code

* updates to the readme

* Bump to 0.7.6

* update Bernd Lapp bio

* typo

* bump version to 8.1

* Separated Approve and Approve And Call

* Updated README with GitHub pages instructions

* Just like before (#284)

removed an errant you

* update to 0.8.2 and removes mix

* Update Google Analytics tracking ID (#286)

* Update Build 0.8.2

* added v to download link

* update Ethereum Wallet links to 0.8.6

* added geth binaries

* test file

* removed binaries

* added mist geth binaries

* removed binaries

* Timelock and payable daos

* update to 0.8.8

* build

* merge and build

* Updated build

* Update foundation.md

* Update foundation.md

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Update foundation.html

* Removed link to the legal notice

* updated build

* Updated build (#602)

* Update Links for Parity Client

Links for Parity Client were outdated. Company changed it's name to Parity Technologies.

* Added Gruntfile data and built html for legal-related files: cookie-policy, privacy-policy, terms-of-use.

* Legal: slight prettying of the Gruntfile data.

* Legal: attempt to restore the privacy-policy link (app was not finding the content).

* Foundation: updated the mission statement for clarity.

* Updated build

* Updated build

* Donation update

* update solidity exampoles (#640)

* Fix links and blank spaces (#641)

* update solidity exampoles

* Add some spaces and fix link
  • Loading branch information
alexvansande committed Aug 18, 2017
1 parent f1908b0 commit 7ce7e75
Show file tree
Hide file tree
Showing 45 changed files with 3,594 additions and 2,148 deletions.
30 changes: 17 additions & 13 deletions Gruntfile.js
@@ -1,7 +1,7 @@
var src = 'public/';
var dest = 'dist/';

var scripts = [
var app = [
'public/js/ether-checker.js',
'public/js/script.js'
];
Expand Down Expand Up @@ -91,10 +91,10 @@ module.exports = function(grunt) {
'dist/devgrants.html': 'views/devgrants.jade'
},
{
'dist/cookie-policy.html': 'views/cookie-policy.jade'
'dist/privacy-policy.html': 'views/privacy-policy.jade'
},
{
'dist/privacy-policy.html': 'views/privacy-policy.jade'
'dist/cookie-policy.html': 'views/cookie-policy.jade'
},
{
'dist/terms-of-use.html': 'views/terms-of-use.jade'
Expand Down Expand Up @@ -153,20 +153,20 @@ module.exports = function(grunt) {
concat: {
vendor: {
src: vendor,
dest: 'dist/js/vendor.min.js'
dest: 'dist/js/vendor.js'
},
scripts : {
app : {
options: {
separator: ';',
},
src: scripts,
src: app,
dest: 'dist/js/app.js'
},
frontier: {
options: {
sourceMap: true
},
src: ['<%= concat.vendor.dest %>', '<%= uglify.app.dest %>'],
src: ['<%= uglify.vendor.dest %>', '<%= uglify.app.dest %>'],
dest: 'dist/js/frontier.min.js'
},
css: {
Expand All @@ -176,11 +176,15 @@ module.exports = function(grunt) {
},
uglify: {
app: {
options: {
mangle: false,
},
dest: 'dist/js/app.min.js',
src: ['<%= concat.scripts.dest %>']
src: ['<%= concat.app.dest %>']
},
vendor: {
dest: 'dist/js/vendor.min.js',
src: ['<%= concat.vendor.dest %>']
},
options: {
mangle: false
}
}
});
Expand All @@ -192,6 +196,6 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.registerTask('default', ['clean', 'jade', 'copy', 'cssmin', 'concat:vendor', 'concat:scripts', 'uglify', 'concat:frontier', 'concat:css', 'clean:cleanup_js', 'clean:cleanup_css']);
grunt.registerTask('build', 'default');
grunt.registerTask('default', ['clean', 'jade', 'copy', 'cssmin', 'concat:vendor', 'concat:app', 'uglify', 'concat:frontier', 'concat:css', 'clean:cleanup_js', 'clean:cleanup_css']);
grunt.registerTask('build', 'default');
};
4 changes: 4 additions & 0 deletions app.js
Expand Up @@ -22,6 +22,10 @@ app.get('/', function(req, res) {
res.render('index');
});

app.get('/wallet', function(req, res) {
res.render('wallet')
});

app.get('/cli', function(req, res) {
res.render('cli');
});
Expand Down
2 changes: 1 addition & 1 deletion dist/agreement.html
Expand Up @@ -73,7 +73,7 @@ <h4>Force Majeure</h4>

<ul><li>Unavoidable casualty</li><li>Delays in delivery of materials</li><li>Embargoes</li><li>Government orders</li><li>Acts of civil or military authorities</li><li>Lack of energy</li><li>Any similar unforeseen event that renders performance commercially implausible.</li></ul>

<hr/></div></div></div></div><footer class="scrollme"><div class="footer"><div class="container"><div class="row"><div id="developer-resources" class="col-md-6 developers"><h2>Developer Resources</h2><ul><li>What is Ether? <a href="./ether">Read our FAQ</a></li><li>Source code on <a href="http://github.com/ethereum/">GitHub</a></li><li>Read the <a href="http://www.ethdocs.org/">Homestead Documentation</a></li><li>Learn the <a href="https://solidity.readthedocs.org/">Solidity Language</a></li><li>Learn more on the Ethereum <a href="http://ethdocs.org/en/latest/">documentation </a>and Ethereum <a href="https://github.com/ethereum/go-ethereum/wiki/">Go </a>Wiki</li><li>See latest data on <a href="https://ethstats.net">Network Stats</a></li><li>Download our <a href="assets">Logo assets </a></li><li>Want to write about us? <a href="mailto:press@ethereum.org ">Press inquiries</a></li></ul></div><div id="about-us" class="col-md-6"><h2>Ethereum Foundation</h2><p>Ethereum is developed by a worldwide team of passionate developers for the <a href="./foundation">Ethereum Foundation</a>, a Swiss nonprofit organization. </p><p> <a href="./donate" class="donate-button">Donate to support development </a><div class="caption">(and you can get a unicorn!)</div></p></div></div><div class="row"><div id="community" class="col-md-6 community"><h2>Community</h2><ul><li><a href="http://blog.ethereum.org">Blog</a></li><li><a href="http://twitter.com/ethereumproject" class="twitter">Twitter</a></li><li><a href="https://www.youtube.com/user/ethereumproject" class="youtube">Youtube</a></li><li><a href="http://www.reddit.com/r/ethereum" class="reddit">Reddit</a></li><li><a href="https://gitter.im/orgs/ethereum/rooms" class="gitter">Gitter</a></li><li><a href="http://ethereum.stackexchange.com" class="stackexchange">Stack Exchange</a></li><li><a href="https://www.facebook.com/ethereumproject" class="facebook">Facebook </a></li><li><a href="http://ethereum.meetup.com" class="meetups">Meetups</a></li><li><a href="mailto:info@ethereum.org" class="email">Email us</a></li><li class="canary"><p>The Ethereum Foundation (Stiftung Ethereum) has never been contacted by any agency anywhere in the world in a way which requires that contact not to be disclosed.</p><p>Stiftung Ethereum will publicly disclose any sort of inquiry from government agencies that falls outside the scope of regular business operations.</p></li></ul></div><div id="news" class="col-md-6 news"><h2>Tweets</h2><a href="https://twitter.com/ethereumproject" data-widget-id="694952013856112640" data-chrome="nofooter noborders transparent noheader" height="360px" class="twitter-timeline">Tweets by @ethereumproject</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div></div><div class="col-md-12"><p class="copyright">Ethereum Foundation (Stiftung Ethereum), Zug, Switzerland </p><p class="footer_links"> <a href="./privacy-policy">Privacy Policy </a>&nbsp; &nbsp; <a href="./cookie-policy">Cookie Policy</a>&nbsp; &nbsp; <a href="./terms-of-use">Terms of Use</a></p><p class="copyright">Copyright ©2017 Ethereum Foundation. All Rights Reserved.</p></div></div></div></footer><script src="/js/frontier.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script><script>$(document).ready(function(){
<hr/></div></div></div></div><footer class="scrollme"><div class="footer"><div class="container"><div class="row"><div id="developer-resources" class="col-md-6 developers"><h2>Developer Resources</h2><ul><li>What is Ether? <a href="./ether">Read our FAQ</a></li><li>Source code on <a href="http://github.com/ethereum/">GitHub</a></li><li>Read the <a href="http://www.ethdocs.org/">Homestead Documentation</a></li><li>Learn the <a href="https://solidity.readthedocs.org/">Solidity Language</a></li><li>Learn more on the Ethereum <a href="http://ethdocs.org/en/latest/">documentation </a>and Ethereum <a href="https://github.com/ethereum/go-ethereum/wiki/">Go </a>Wiki</li><li>See latest data on <a href="https://ethstats.net">Network Stats</a></li><li>Download our <a href="assets">Logo assets </a></li><li>Want to write about us? <a href="mailto:press@ethereum.org ">Press inquiries</a></li></ul></div><div id="about-us" class="col-md-6"><h2>Ethereum Foundation</h2><p>Ethereum is developed by a worldwide team of passionate developers for the <a href="./foundation">Ethereum Foundation</a>, a Swiss nonprofit organization. </p><p> <a href="./donate" class="donate-button">Donate to support development </a><div class="caption">(and you can get a unicorn!)</div></p></div></div><div class="row"><div id="community" class="col-md-6 community"><h2>Community</h2><ul><li><a href="http://blog.ethereum.org">Blog</a></li><li><a href="http://twitter.com/ethereumproject" class="twitter">Twitter</a></li><li><a href="https://www.youtube.com/user/ethereumproject" class="youtube">Youtube</a></li><li><a href="http://www.reddit.com/r/ethereum" class="reddit">Reddit</a></li><li><a href="https://gitter.im/orgs/ethereum/rooms" class="gitter">Gitter</a></li><li><a href="http://ethereum.stackexchange.com" class="stackexchange">Stack Exchange</a></li><li><a href="https://www.facebook.com/ethereumproject" class="facebook">Facebook </a></li><li><a href="http://ethereum.meetup.com" class="meetups">Meetups</a></li><li><a href="mailto:info@ethereum.org" class="email">Email us</a></li><li class="canary"><p>The Ethereum Foundation (Stiftung Ethereum) has never been contacted by any agency anywhere in the world in a way which requires that contact not to be disclosed.</p><p>Stiftung Ethereum will publicly disclose any sort of inquiry from government agencies that falls outside the scope of regular business operations.</p></li></ul></div><div id="news" class="col-md-6 news"><h2>Tweets</h2><a href="https://twitter.com/ethereumproject" data-widget-id="694952013856112640" data-chrome="nofooter noborders transparent noheader" height="360px" class="twitter-timeline">Tweets by @ethereumproject</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div></div><div class="col-md-12"><p class="copyright">Ethereum Foundation (Stiftung Ethereum), Zug, Switzerland </p><p class="footer_links"> <a href="./privacy-policy">Privacy Policy </a>&nbsp; &nbsp; <a href="./cookie-policy">Cookie Policy</a>&nbsp; &nbsp; <a href="./terms-of-use">Terms of Use</a></p><p class="copyright">Copyright ©2017 Ethereum Foundation. All Rights Reserved. </p></div></div></div></footer><script src="/js/frontier.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script><script>$(document).ready(function(){
$("#toc").tableOfContents(
$(".main-tutorial"), // Scoped to div#wrapper
{
Expand Down
3 changes: 2 additions & 1 deletion dist/assets.html

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/brand.html
Expand Up @@ -7,7 +7,9 @@
<h3>Contact Information</h3>

<p>If you have any questions or clarifications pertaining to these guidelines, please email us at
<a href="mailto:brand@ethereum.org">brand@ethereum.org</a></p><a href="https://github.com/ethereum/ethereum-org/edit/master/views/content/branding.md" class="button small">Improve this page</a></div></div></div></div><footer class="scrollme"><div class="footer"><div class="container"><div class="row"><div id="developer-resources" class="col-md-6 developers"><h2>Developer Resources</h2><ul><li>What is Ether? <a href="./ether">Read our FAQ</a></li><li>Source code on <a href="http://github.com/ethereum/">GitHub</a></li><li>Read the <a href="http://www.ethdocs.org/">Homestead Documentation</a></li><li>Learn the <a href="https://solidity.readthedocs.org/">Solidity Language</a></li><li>Learn more on the Ethereum <a href="http://ethdocs.org/en/latest/">documentation </a>and Ethereum <a href="https://github.com/ethereum/go-ethereum/wiki/">Go </a>Wiki</li><li>See latest data on <a href="https://ethstats.net">Network Stats</a></li><li>Download our <a href="assets">Logo assets </a></li><li>Want to write about us? <a href="mailto:press@ethereum.org ">Press inquiries</a></li></ul></div><div id="about-us" class="col-md-6"><h2>Ethereum Foundation</h2><p>Ethereum is developed by a worldwide team of passionate developers for the <a href="./foundation">Ethereum Foundation</a>, a Swiss nonprofit organization. </p><p> <a href="./donate" class="donate-button">Donate to support development </a><div class="caption">(and you can get a unicorn!)</div></p></div></div><div class="row"><div id="community" class="col-md-6 community"><h2>Community</h2><ul><li><a href="http://blog.ethereum.org">Blog</a></li><li><a href="http://twitter.com/ethereumproject" class="twitter">Twitter</a></li><li><a href="https://www.youtube.com/user/ethereumproject" class="youtube">Youtube</a></li><li><a href="http://www.reddit.com/r/ethereum" class="reddit">Reddit</a></li><li><a href="https://gitter.im/orgs/ethereum/rooms" class="gitter">Gitter</a></li><li><a href="http://ethereum.stackexchange.com" class="stackexchange">Stack Exchange</a></li><li><a href="https://www.facebook.com/ethereumproject" class="facebook">Facebook </a></li><li><a href="http://ethereum.meetup.com" class="meetups">Meetups</a></li><li><a href="mailto:info@ethereum.org" class="email">Email us</a></li><li class="canary"><p>The Ethereum Foundation (Stiftung Ethereum) has never been contacted by any agency anywhere in the world in a way which requires that contact not to be disclosed.</p><p>Stiftung Ethereum will publicly disclose any sort of inquiry from government agencies that falls outside the scope of regular business operations.</p></li></ul></div><div id="news" class="col-md-6 news"><h2>Tweets</h2><a href="https://twitter.com/ethereumproject" data-widget-id="694952013856112640" data-chrome="nofooter noborders transparent noheader" height="360px" class="twitter-timeline">Tweets by @ethereumproject</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div></div><div class="col-md-12"><p class="copyright">Ethereum Foundation (Stiftung Ethereum), Zug, Switzerland </p><p class="footer_links"> <a href="./privacy-policy">Privacy Policy </a>&nbsp; &nbsp; <a href="./cookie-policy">Cookie Policy</a>&nbsp; &nbsp; <a href="./terms-of-use">Terms of Use</a></p><p class="copyright">Copyright ©2017 Ethereum Foundation. All Rights Reserved.</p></div></div></div></footer><script src="/js/frontier.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script><script>$(document).ready(function(){

<a href="mailto:brand@ethereum.org">brand@ethereum.org</a></p><a href="https://github.com/ethereum/ethereum-org/edit/master/views/content/branding.md" class="button small">Improve this page</a></div></div></div></div><footer class="scrollme"><div class="footer"><div class="container"><div class="row"><div id="developer-resources" class="col-md-6 developers"><h2>Developer Resources</h2><ul><li>What is Ether? <a href="./ether">Read our FAQ</a></li><li>Source code on <a href="http://github.com/ethereum/">GitHub</a></li><li>Read the <a href="http://www.ethdocs.org/">Homestead Documentation</a></li><li>Learn the <a href="https://solidity.readthedocs.org/">Solidity Language</a></li><li>Learn more on the Ethereum <a href="http://ethdocs.org/en/latest/">documentation </a>and Ethereum <a href="https://github.com/ethereum/go-ethereum/wiki/">Go </a>Wiki</li><li>See latest data on <a href="https://ethstats.net">Network Stats</a></li><li>Download our <a href="assets">Logo assets </a></li><li>Want to write about us? <a href="mailto:press@ethereum.org ">Press inquiries</a></li></ul></div><div id="about-us" class="col-md-6"><h2>Ethereum Foundation</h2><p>Ethereum is developed by a worldwide team of passionate developers for the <a href="./foundation">Ethereum Foundation</a>, a Swiss nonprofit organization. </p><p> <a href="./donate" class="donate-button">Donate to support development </a><div class="caption">(and you can get a unicorn!)</div></p></div></div><div class="row"><div id="community" class="col-md-6 community"><h2>Community</h2><ul><li><a href="http://blog.ethereum.org">Blog</a></li><li><a href="http://twitter.com/ethereumproject" class="twitter">Twitter</a></li><li><a href="https://www.youtube.com/user/ethereumproject" class="youtube">Youtube</a></li><li><a href="http://www.reddit.com/r/ethereum" class="reddit">Reddit</a></li><li><a href="https://gitter.im/orgs/ethereum/rooms" class="gitter">Gitter</a></li><li><a href="http://ethereum.stackexchange.com" class="stackexchange">Stack Exchange</a></li><li><a href="https://www.facebook.com/ethereumproject" class="facebook">Facebook </a></li><li><a href="http://ethereum.meetup.com" class="meetups">Meetups</a></li><li><a href="mailto:info@ethereum.org" class="email">Email us</a></li><li class="canary"><p>The Ethereum Foundation (Stiftung Ethereum) has never been contacted by any agency anywhere in the world in a way which requires that contact not to be disclosed.</p><p>Stiftung Ethereum will publicly disclose any sort of inquiry from government agencies that falls outside the scope of regular business operations.</p></li></ul></div><div id="news" class="col-md-6 news"><h2>Tweets</h2><a href="https://twitter.com/ethereumproject" data-widget-id="694952013856112640" data-chrome="nofooter noborders transparent noheader" height="360px" class="twitter-timeline">Tweets by @ethereumproject</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div></div><div class="col-md-12"><p class="copyright">Ethereum Foundation (Stiftung Ethereum), Zug, Switzerland </p><p class="footer_links"> <a href="./privacy-policy">Privacy Policy </a>&nbsp; &nbsp; <a href="./cookie-policy">Cookie Policy</a>&nbsp; &nbsp; <a href="./terms-of-use">Terms of Use</a></p><p class="copyright">Copyright ©2017 Ethereum Foundation. All Rights Reserved. </p></div></div></div></footer><script src="/js/frontier.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script><script>$(document).ready(function(){

$("#toc").tableOfContents(
$(".main-tutorial"), // Scoped to div#wrapper
{
Expand Down

0 comments on commit 7ce7e75

Please sign in to comment.