diff --git a/i/css/home.css b/i/css/home.css index e5c0ec5..73076a3 100755 --- a/i/css/home.css +++ b/i/css/home.css @@ -127,11 +127,10 @@ .ui-dialog.EdgeDialog { - font-size: 15px; //14px; - font-family: 'PT Sans', Arial, Helvetica, sans-serif; + font-size: 15px; + font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; } - .ui-dialog-titlebar-close { border: 1px solid #c5dbec; diff --git a/script/Appilcation.js b/script/Appilcation.js index 5394820..c3cf8d5 100644 --- a/script/Appilcation.js +++ b/script/Appilcation.js @@ -11,7 +11,7 @@ function Application(document, window) this.canvas = this.document.getElementById('canvas'); this.handler = new AddGraphHandler(this); this.savedGraphName = ""; - this.currentEnumVertesType = new BaseEnumVertices(this);//this.enumVertexesTextList[0]; + this.currentEnumVertesType = new BaseEnumVertices(this, 1);//this.enumVertexesTextList[0]; this.findPathReport = 1; this.isTimerRender = false; globalApplication = this; @@ -20,7 +20,7 @@ function Application(document, window) this.renderPathLength = 0; this.renderPathCounter = 0; this.renderPathLoops = 0; - this.enumVertexesTextList = [new BaseEnumVertices(this), new TextEnumVertexs(this), new TextEnumVertexsCyr(this), new TextEnumVertexsGreek(this), new TextEnumVertexsCustom(this)]; + this.enumVertexesTextList = [new BaseEnumVertices(this, 1), new BaseEnumVertices(this, 0), new TextEnumVertexs(this), new TextEnumVertexsCyr(this), new TextEnumVertexsGreek(this), new TextEnumVertexsCustom(this)]; this.SetDefaultTransformations(); this.algorithmsValues = {}; this.userAction = function(){}; diff --git a/script/EnumVertices.js b/script/EnumVertices.js index e029cbe..e583558 100755 --- a/script/EnumVertices.js +++ b/script/EnumVertices.js @@ -7,14 +7,15 @@ * Base Enum Vertexs. * */ -function BaseEnumVertices(app) +function BaseEnumVertices(app, startNumber) { this.app = app; + this.startNumber = startNumber; } BaseEnumVertices.prototype.GetVertexText = function(id) { - return id; + return this.startNumber + id; } BaseEnumVertices.prototype.GetVertexTextAsync = function(callback) @@ -24,12 +25,12 @@ BaseEnumVertices.prototype.GetVertexTextAsync = function(callback) BaseEnumVertices.prototype.GetText = function() { - return "1, 2, 3..."; + return this.startNumber + ", " + (this.startNumber + 1) + ", " + (this.startNumber + 2) + "..."; } BaseEnumVertices.prototype.GetValue = function() { - return "Numbers"; + return "Numbers" + this.startNumber; } function TextEnumTitle(app, title) diff --git a/src/home.php b/src/home.php index 9539ac0..d34c4c4 100755 --- a/src/home.php +++ b/src/home.php @@ -27,12 +27,15 @@ fclose($cvsFile); } - } - + + if (strlen($graphId) > 0 || strlen($graphName) == 0) { + $graphName = L('graph'). " " . $graphId; + } + } if (strlen($graphName) > 0) { - $g_lang["m_title"] = $graphName; + $g_lang["m_title"] = $g_lang["m_title"] . " (" . $graphName . ")"; $g_lang["m_keyWords"] = $graphName . ", " . $g_lang["m_keyWords"]; $g_lang["m_description"] = $g_lang["title_notg"] . ": " . $graphName; }