Skip to content

Commit

Permalink
Updated the install files for openSEE to the latest version.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCWills committed Apr 5, 2016
1 parent bef79a1 commit b0541b1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions install/src/openSEE/OpenSEE.aspx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
//******************************************************************************************************
-->

<%@ page language="C#" autoeventwireup="true" inherits="OpenSEE, App_Web_inf1p4py" %>
<%@ page language="C#" autoeventwireup="true" inherits="OpenSEE, App_Web_bqpuo1ol" %>

<!DOCTYPE html>

Expand Down Expand Up @@ -128,7 +128,7 @@
<tr>
<% if (postedAdjacentEventIds[0] != -1)
{ %>
<td><a href="?eventid=<%= postedAdjacentEventIds[0] %>" class="smallbutton" type="button" id="previousevent">Previous Event</a></td>
<td><a href="?eventid=<%= postedAdjacentEventIds[0] + postedURLQueryString %>" class="smallbutton" type="button" id="previousevent">Previous Event</a></td>
<% } %>
<td><input class="smallbutton" type="button" value="Reset Zoom" id="resetZoom"/></td>
<td><input class="smallbutton" type="button" value="Show Points" onclick="showhidePoints(this);" id="showpoints"/></td>
Expand All @@ -137,7 +137,7 @@
<td><input class="smallbutton" type="button" value="Fault Details" onclick="showdetails(this);" id="showdetails"/></td>
<% if (postedAdjacentEventIds[1] != -1)
{ %>
<td><a href="?eventid=<%=postedAdjacentEventIds[1] %>" class="smallbutton" type="button" id="nextevent">Next Event</a></td>
<td><a href="?eventid=<%=postedAdjacentEventIds[1] + postedURLQueryString %>" class="smallbutton" type="button" id="nextevent">Next Event</a></td>
<% } %>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion install/src/openSEE/OpenSEENav.aspx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
//******************************************************************************************************
-->

<%@ page language="C#" autoeventwireup="true" inherits="OpenSEENav, App_Web_inf1p4py" %>
<%@ page language="C#" autoeventwireup="true" inherits="OpenSEENav, App_Web_bqpuo1ol" %>

<!DOCTYPE html>

Expand Down
Binary file modified install/src/openSEE/bin/App_Code.dll
Binary file not shown.
Binary file added install/src/openSEE/bin/App_Web_bqpuo1ol.dll
Binary file not shown.
Binary file removed install/src/openSEE/bin/App_Web_inf1p4py.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions install/src/openSEE/js/OpenSEE.js
Original file line number Diff line number Diff line change
Expand Up @@ -1387,8 +1387,8 @@ function RemovePoint() {

}
else {
pointsTable[selectedPoint + 1].deltatime = pointsTable[selectedPoint - 1].thetime - pointsTable[selectedPoint + 1].thetime;
pointsTable[selectedPoint + 1].deltavalue = (pointsTable[selectedPoint - 1].thevalue - pointsTable[selectedPoint + 1].thevalue).toFixed(3);
pointsTable[selectedPoint + 1].deltatime = pointsTable[selectedPoint + 1].thetime - pointsTable[selectedPoint - 1].thetime;
pointsTable[selectedPoint + 1].deltavalue = (pointsTable[selectedPoint + 1].thevalue - pointsTable[selectedPoint - 1].thevalue).toFixed(3);
for (var i = selectedPoint + 1; i < pointsTable.length; ++i)
pointsTable[i].arrayIndex--;
pointsTable.splice(selectedPoint, 1);
Expand All @@ -1410,7 +1410,7 @@ function popAccumulatedPoints() {
//////////////////////////////////////////////////////////////////////////////////////////////

function clearAccumulatedPoints() {
while(pointsTable.length > 0) pointsTable.pop();
while (pointsTable.length > 0) pointsTable.pop();
$('#accumulatedpointscontent').puidatatable('reload');
}

Expand Down

0 comments on commit b0541b1

Please sign in to comment.