- Contract.php: 返回合约账户余额(balance_contract) - My.php: 地址管理增加BTC/ETH - AppContract.php: 一键平仓(closeall) - AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2) - site.php: 手续费减半(0.018→0.009) - agent_permission_setup.sql: 代理权限SQL - crypto_news_crawler.py: 新闻自动采集脚本
1.7 KiB
Executable File
1.7 KiB
Executable File
Submitting Issues
If you are submitting a bug, please test and/or fork this jsfiddle demonstrating the issue. Code issues and fringe case bugs that do not include a jsfiddle (or similar) will be closed.
Issues that are submitted without a description (title only) will be closed with no further explanation.
Contributing code
To contribute, fork the library and install grunt and dependencies. You need node; use nvm or nenv to install it.
git clone https://github.com/Eonasdan/bootstrap-datetimepicker.git
cd bootstrap-datetimepicker
npm install -g grunt-cli
npm install
git checkout development # all patches against development branch, please!
grunt # this runs tests and jshint
Very important notes
- Pull requests to the
masterbranch will be closed. Please submit all pull requests to thedevelopmentbranch. - Do not include the minified files in your pull request. Don't worry, we'll build them when we cut a release.
- Pull requests that do not include a description (title only) and the following will be closed:
- What the change does
- A use case (for new features or enhancements)
Grunt tasks
We use Grunt for managing the build. Here are some useful Grunt tasks:
gruntThe default task lints the code and runs the tests. You should make sure you do this before submitting a PR.grunt buildCompiles the less stylesheet and minifies the javascript source in build directory.grunt build:travisCompliles and runs the jasmine/travis tests. All PR's MUST pass tests in place