Skip to content

Commit

Permalink
Merge pull request #1417 from gitcoinco/rollbar
Browse files Browse the repository at this point in the history
rollbar : quickstart
  • Loading branch information
thelostone-mc authored Jun 12, 2018
2 parents 567e252 + 4b06760 commit f1a94f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
1 change: 0 additions & 1 deletion app/assets/v2/js/landing_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ $(document).ready(function() {
// Preserve scroll position if user was just here
if (prevScroll && lastAccessed && new Date().getTime() - lastAccessed < 60 * 1000) {
scrollContainer.scrollTop(prevScroll);
moveWithScroll({});
}
// before the current page goes away, save the menu position
$(window).on('beforeunload', function() {
Expand Down
10 changes: 2 additions & 8 deletions app/assets/yge/youvegoteth/pre.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,5 @@ waitforWeb3(function() {

if (typeof Accounts != 'undefined') {
Accounts = new Accounts();

// Extend the web3 object
Accounts.log = function(msg) {
console.log(msg);
};

}
document.Accounts = Accounts;
document.Accounts = Accounts;
}
8 changes: 5 additions & 3 deletions app/dashboard/templates/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ <h4 class="subheading">{% blocktrans %}In our experience, the following are <spa
<script src="{% static "v2/js/tokens.js" %}"></script>
<script src="{% static "v2/js/pages/quickstart.js" %}"></script>
<script src="{% static "v2/js/shared.js" %}"></script>
<script>
document.keywords = {{keywords | safe}};
</script>
{% if keywords %}
<script>
document.keywords = {{ keywords|safe }};
</script>
{% endif %}
</body>

0 comments on commit f1a94f1

Please sign in to comment.