Merge pull request #6 from avishkarabhishek786/master
added textbox for plot diagram
This commit is contained in:
commit
ca97387d15
15
README.md
15
README.md
@ -1,10 +1,17 @@
|
||||
# p2p-content-collaboration
|
||||
A p2p shared content collaboration platform using FLO Blockchain.
|
||||
|
||||
To use the application just download the HTML file and run it in any browser.
|
||||
This is a peer to peer FLO Blockchain based content collaboration software that runs on a single HTML file.
|
||||
|
||||
To add/edit contents click in the respective division and add/edit your content. When you focus out
|
||||
of the division the content is added into the system. Content can only be added or modified.
|
||||
## How to run this software
|
||||
|
||||
1. Download and run the HTML file on any browser (Google Chrome is preferred)
|
||||
2. It will ask for a FLO private key. If you do not have one please generate it from flo-webwallet.duckdns.org
|
||||
3. Once you provide your private keys you are logged in forever
|
||||
4. To add your suggestions please write inside the boxes under respective sections
|
||||
5. You can also chose to edit any content by adding/deleting contents
|
||||
6. To submit your views just click outside the box anywhere. Your views will be recorded
|
||||
7. The respective admins can score the content to choose the best ones
|
||||
8. To score the content please click on the star icon and provide a score. Score will be recorded.
|
||||
|
||||
Any user running the file gets to edit a shared content. Hence, this application can be used for multiple purposes
|
||||
like create shared content, write book by multiple authors or reach a consensus through collaborative discussion.
|
||||
|
||||
@ -1167,6 +1167,7 @@ let myCustomLogin = function () {
|
||||
</div>
|
||||
</div>
|
||||
<div id="admindiv"></div>
|
||||
<div id="sectionplotdiv"></div>
|
||||
<div id="userdiv"></div>
|
||||
<div id="context_menu" class="hide">
|
||||
<button onclick="cloudArticleApp.reset_export_list()">
|
||||
@ -1268,6 +1269,14 @@ let myCustomLogin = function () {
|
||||
</svg>
|
||||
New Article
|
||||
</button>
|
||||
<button onclick="showPopup('section_plot_modal')" title="Create new sections by plot diagram">
|
||||
<svg class="icon" viewBox="0 0 64 64">
|
||||
<title>add</title>
|
||||
<line x1="32" x2="32" y2="64"/>
|
||||
<line x1="64" y1="32" y2="32"/>
|
||||
</svg>
|
||||
Add Plot Diagram
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<button id="logout_btn" title="Logout button" onclick="cloudArticleApp.logout()">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user