Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# Ebookcoin Web Client

亿书:去中心化的自出版和版权保护应用

This repository is a submodule of the Ebookcoin, and bases on [Ember.js](https://emberjs.com/).

## Installation

Expand Down
Binary file modified images/apple-touch-icon-114x114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-57x57.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/apple-touch-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/ebookchain-logo-40x40.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/ebookchain-logo-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon-196x196.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon.ico
Binary file not shown.
Binary file modified images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/logo-grey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/mstile-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/mstile-28.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/mstile-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/mstile-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/nav_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/palletIco.psd
Diff not rendered.
Binary file added images/palletIco2.psd
Diff not rendered.
Binary file modified images/weixin-108.png
2 changes: 1 addition & 1 deletion js/controllers/contactsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ angular.module('ebookcoinApp').controller('contactsController', ['$scope', '$roo

$scope.tableContacts.cols = {
username : gettextCatalog.getString('Username'),
address : gettextCatalog.getString('Ebookcoin Address')
address : gettextCatalog.getString('PLTChainCoin Address')
};

$scope.tableContacts.settings().$scope = $scope;
Expand Down
2 changes: 1 addition & 1 deletion js/controllers/delegatesController.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ angular.module('ebookcoinApp').controller('delegatesController', ['$scope', '$ro
$scope.tableTopDelegates.cols = {
rate : gettextCatalog.getString('Rank'),
username : gettextCatalog.getString('Name'),
address : gettextCatalog.getString('Ebookcoin Address'),
address : gettextCatalog.getString('PLTChainCoin Address'),
productivity : gettextCatalog.getString('Uptime'),
vote : gettextCatalog.getString('Approval')
};
Expand Down
2 changes: 1 addition & 1 deletion js/controllers/modals/newUserController.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ angular.module('ebookcoinApp').controller('newUserController', ["$scope", "$http

$scope.savePassToFile = function (pass) {
var blob = new Blob([pass], {type: "text/plain;charset=utf-8"});
FS.saveAs(blob, "ebookcoinPassphrase.txt");
FS.saveAs(blob, "PLTCHAINPassphrase.txt");
}

$scope.login = function (pass) {
Expand Down
2 changes: 1 addition & 1 deletion js/controllers/pendingsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ angular.module('ebookcoinApp').controller('pendingsController', ['$scope', '$roo

$scope.tableFollowers.cols = {
username : gettextCatalog.getString('Username'),
address : gettextCatalog.getString('Ebookcoin Address')
address : gettextCatalog.getString('PLTChainCoin Address')
};

$scope.tableContacts.settings().$scope = $scope;
Expand Down
2 changes: 1 addition & 1 deletion js/controllers/votedDelegatesController.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ angular.module('ebookcoinApp').controller('votedDelegatesController', ['$scope',
$scope.tableMyDelegates.cols = {
rate : gettextCatalog.getString('Rank'),
username : gettextCatalog.getString('Name'),
address : gettextCatalog.getString('Ebookcoin Address'),
address : gettextCatalog.getString('PLTChainCoin Address'),
productivity : gettextCatalog.getString('Uptime'),
vote : gettextCatalog.getString('Approval')
};
Expand Down
2 changes: 1 addition & 1 deletion js/controllers/walletPendingsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ angular.module('ebookcoinApp').controller('walletPendingsController', ['$scope',
});

$scope.tableTransactions.cols = {
wallet : gettextCatalog.getString('Ebookcoin Address'),
wallet : gettextCatalog.getString('PLTChainCoin Address'),
transactionId : gettextCatalog.getString('Transaction ID'),
t_recipientId : gettextCatalog.getString('Recipient'),
t_timestamp : gettextCatalog.getString('Time'),
Expand Down
Loading