Skip to content

Commit e890237

Browse files
author
Emran
committed
Cunt updated
1 parent f69f6c6 commit e890237

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

app/store/store.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class Store{
4949
success: function(poll) {
5050
console.log(poll);
5151
this.setPollList(poll.data.poll);
52+
$("#content-count").html(poll.data.total);
5253
if(this.isReloadPoll){
5354
this.setReloadPoll();
5455
}

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@
119119
<i class="gg-poll2"></i>
120120
</div>
121121
<div class="event-intro">
122-
<h1 class="title">Poll</h1>
123-
<p class="des">Total 2930 polls are available.</p>
122+
<h1 class="b-title">Poll</h1>
123+
<p class="des">Total <span id="content-count">2930</span> polls are available.</p>
124124
</div>
125125
</div> <!-- banner-content-left -->
126126

webpack.config.js

+18-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ var path = require('path');
22
var webpack = require('webpack');
33

44
module.exports = {
5-
devtool: 'eval',
5+
//devtool: 'eval',
66
entry: [
7-
'react-hot-loader/patch',
8-
'webpack-dev-server/client?http://localhost:3011',
9-
'webpack/hot/only-dev-server',
7+
//'react-hot-loader/patch',
8+
//'webpack-dev-server/client?http://localhost:3011',
9+
//'webpack/hot/only-dev-server',
1010
'./app/app'
1111
],
1212
output: {
@@ -15,7 +15,20 @@ module.exports = {
1515
publicPath: '/static/'
1616
},
1717
plugins: [
18-
new webpack.HotModuleReplacementPlugin()
18+
new webpack.HotModuleReplacementPlugin(),
19+
new webpack.optimize.UglifyJsPlugin({
20+
compress: {
21+
warnings: false,
22+
drop_debugger: true
23+
},
24+
output: {
25+
ascii_only: true,
26+
comments: false
27+
}
28+
}),
29+
new webpack.DefinePlugin({
30+
'process.env.NODE_ENV': '"production"'
31+
})
1932
],
2033
module: {
2134
loaders: [{

0 commit comments

Comments
 (0)