diff options
| author | garbash <dor.garbash@gmail.com> | 2015-04-26 17:08:32 +0300 |
|---|---|---|
| committer | garbash <dor.garbash@gmail.com> | 2015-04-26 17:08:35 +0300 |
| commit | 7e375071ff687300c78ab1dd91a075e906b00674 (patch) | |
| tree | 776d1322b1b0c7c44eb1721cf0d569d7698a2658 | |
| parent | c1fe4ae32e161e2b9395ccb3b71a35cdb5dbbf47 (diff) | |
UI text changes for search and merge
| -rw-r--r-- | res/templates/index.html | 2 | ||||
| -rw-r--r-- | src/client/buttons.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/res/templates/index.html b/res/templates/index.html index a0107906..c2d47381 100644 --- a/res/templates/index.html +++ b/res/templates/index.html @@ -69,7 +69,7 @@ var RZ_VERSION = '{% include "fragment/version.txt" %}'; </div> <div id="input-box-set-container"> <div class="input-container" id="input-container__search"> - <input class="input-bar" tabindex="1" id="search" placeholder="Search for nodes or links"/> + <input class="input-bar" tabindex="1" id="search" placeholder="Search and select nodes"/> <button tabindex="-1" id="btn_search"></button> <div id="selection-count"></div> <div id="search-suggestion" class="suggestion" style="display: none"></div> diff --git a/src/client/buttons.js b/src/client/buttons.js index cb7f70b1..699688c4 100644 --- a/src/client/buttons.js +++ b/src/client/buttons.js @@ -34,7 +34,7 @@ $('.url-copy a').click(function() { var really_load = function() { if (!rz_core.main_graph.empty()) { - return confirm('All unsaved changes will be deleted, are you sure?'); + return confirm('Current work will be merged with the new import, are you sure?'); } return true; } |
