File tree 3 files changed +21
-7
lines changed
3 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ class Store{
49
49
success : function ( poll ) {
50
50
console . log ( poll ) ;
51
51
this . setPollList ( poll . data . poll ) ;
52
+ $ ( "#content-count" ) . html ( poll . data . total ) ;
52
53
if ( this . isReloadPoll ) {
53
54
this . setReloadPoll ( ) ;
54
55
}
Original file line number Diff line number Diff line change 119
119
< i class ="gg-poll2 "> </ i >
120
120
</ div >
121
121
< 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 >
124
124
</ div >
125
125
</ div > <!-- banner-content-left -->
126
126
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ var path = require('path');
2
2
var webpack = require ( 'webpack' ) ;
3
3
4
4
module . exports = {
5
- devtool : 'eval' ,
5
+ // devtool: 'eval',
6
6
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',
10
10
'./app/app'
11
11
] ,
12
12
output : {
@@ -15,7 +15,20 @@ module.exports = {
15
15
publicPath : '/static/'
16
16
} ,
17
17
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
+ } )
19
32
] ,
20
33
module : {
21
34
loaders : [ {
You can’t perform that action at this time.
0 commit comments