diff --git a/release_notes.md b/release_notes.md index e4e01e3..f32a097 100644 --- a/release_notes.md +++ b/release_notes.md @@ -6,6 +6,7 @@ - Polar plot is activated when `phi`, `Phi`, `theta`, `Theta`, `r` or `R` is the variable. - Unordered list for displaying a list of action results. - Basic graph information (as a list). + - Integrate with respect to any variable. # 23-12-2018 diff --git a/static/app.js b/static/app.js index e334a07..80c6907 100644 --- a/static/app.js +++ b/static/app.js @@ -408,6 +408,7 @@ var app = new Vue({ http.post('graph_info', { 'expression': this.expr() }, (result) => { this.action_in = 'The graph $G$ contains the following properties:'; // +weight + this.action_out = ""; this.action_out_list.push('The degree row of $G$ is $' + result.out['degrees'] + '$.'); this.action_out_list.push('The sum of the degree row is $' + result.out['degrees_sum'] + '$.'); this.latex(); diff --git a/templates/index.html b/templates/index.html index 5fc3ec2..3f0d56c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -131,7 +131,7 @@