Merge pull request #4398 from blockscout/np-speed-up-txs-loading

moved token-transfers-toggle.js
pull/4400/head
Victor Baranov 3 years ago committed by GitHub
commit 5b167cb91a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 1
      apps/block_scout_web/lib/block_scout_web/templates/address/index.html.eex
  3. 1
      apps/block_scout_web/lib/block_scout_web/templates/address_internal_transaction/index.html.eex
  4. 1
      apps/block_scout_web/lib/block_scout_web/templates/address_token_transfer/index.html.eex
  5. 1
      apps/block_scout_web/lib/block_scout_web/templates/chain/show.html.eex
  6. 1
      apps/block_scout_web/lib/block_scout_web/templates/pending_transaction/index.html.eex
  7. 1
      apps/block_scout_web/lib/block_scout_web/templates/tokens/index.html.eex
  8. 1
      apps/block_scout_web/lib/block_scout_web/templates/tokens/transfer/index.html.eex
  9. 1
      apps/block_scout_web/lib/block_scout_web/templates/transaction/_tile.html.eex
  10. 1
      apps/block_scout_web/lib/block_scout_web/templates/transaction/index.html.eex
  11. 1
      apps/block_scout_web/lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex
  12. 1
      apps/block_scout_web/lib/block_scout_web/templates/transaction_token_transfer/index.html.eex

@ -9,6 +9,7 @@
- [#4385](https://github.com/blockscout/blockscout/pull/4385) - Fix html template for transaction's input; Add copy text for tuples - [#4385](https://github.com/blockscout/blockscout/pull/4385) - Fix html template for transaction's input; Add copy text for tuples
### Chore ### Chore
- [#4398](https://github.com/blockscout/blockscout/pull/4398) - Speed up the transactions loading on the front-end
- [#4384](https://github.com/blockscout/blockscout/pull/4384) - Fix Elixir version in `.tool-versions` - [#4384](https://github.com/blockscout/blockscout/pull/4384) - Fix Elixir version in `.tool-versions`
- [#4382](https://github.com/blockscout/blockscout/pull/4382) - Replace awesomplete with autocomplete.js - [#4382](https://github.com/blockscout/blockscout/pull/4382) - Replace awesomplete with autocomplete.js
- [#4371] - (https://github.com/blockscout/blockscout/pull/4371) - Place search outside of burger in mobile view - [#4371] - (https://github.com/blockscout/blockscout/pull/4371) - Place search outside of burger in mobile view

@ -52,4 +52,5 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/async-listing-load.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/async-listing-load.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

@ -68,5 +68,6 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/address-internal-transactions.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/address-internal-transactions.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>
</section> </section>

@ -68,5 +68,6 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/address-token-transfers.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/address-token-transfers.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>
</section> </section>

@ -251,4 +251,5 @@
</span> </span>
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

@ -34,4 +34,5 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/pending-transactions.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/pending-transactions.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

@ -52,4 +52,5 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/tokens.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/tokens.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

@ -36,5 +36,6 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>
</section> </section>

@ -84,5 +84,4 @@
<% end %> <% end %>
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</div> </div>

@ -44,4 +44,5 @@
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/validated-transactions.js") %>"></script> <script defer data-cfasync="false" src="<%= static_path(@conn, "/js/validated-transactions.js") %>"></script>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

@ -25,4 +25,5 @@
<%= render BlockScoutWeb.CommonComponentsView, "_pagination_container.html", position: "bottom", cur_page_number: "1", show_pagination_limit: true, data_next_page_button: true, data_prev_page_button: true %> <%= render BlockScoutWeb.CommonComponentsView, "_pagination_container.html", position: "bottom", cur_page_number: "1", show_pagination_limit: true, data_next_page_button: true, data_prev_page_button: true %>
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

@ -28,4 +28,5 @@
</div> </div>
</div> </div>
<script defer data-cfasync="false" src="<%= static_path(@conn, "/js/token-transfers-toggle.js") %>"></script>
</section> </section>

Loading…
Cancel
Save