Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
update assets count
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaillon committed Feb 23, 2019
1 parent 72fef83 commit f6f9323
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,11 @@
// count the total of downloads
var count = 0;
for (var i = 0, n = data.length; i < n; i++) {
count += data[i].assets[0].download_count;
for (var j=0; i < data[i].assets.length; j++) {
count += data[i].assets[j].download_count;
}
}

$('#totaldl_text').html(count);

}
Expand Down
2 changes: 1 addition & 1 deletion docs/md/home.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# About this project #

*<small>Last update of this page : 25/02/2018</small>*
*<small>Last update of this page : 03/02/2019</small>*

The **OpenEdge** **A**dvanced **B**usiness **L**anguage, or [OpenEdge ABL](https://www.progress.com/openedge) (formerly known as **Progress 4GL**) is a fourth-generation programming language which uses an English-like syntax. Applications developed with this language are portable across computing systems, it uses its own integrated relational database and programming tool which is called the "appbuilder".

Expand Down

0 comments on commit f6f9323

Please sign in to comment.