File tree 5 files changed +24
-0
lines changed
javascripts/backbone/views
5 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ source 'https://rubygems.org'
3
3
# Core gems
4
4
gem 'rails' , '3.2.2'
5
5
6
+ group :development do
7
+ gem 'sqlite3'
8
+ end
6
9
# Database adapters
7
10
gem 'pg' , '0.12.2'
8
11
# Uncomment this is you want to use sqlite locally
Original file line number Diff line number Diff line change 158
158
hike (~> 1.2 )
159
159
rack (~> 1.0 )
160
160
tilt (~> 1.1 , != 1.3.0 )
161
+ sqlite3 (1.3.6 )
161
162
thin (1.3.1 )
162
163
daemons (>= 1.0.9 )
163
164
eventmachine (>= 0.12.6 )
@@ -197,5 +198,6 @@ DEPENDENCIES
197
198
rails (= 3.2.2 )
198
199
remotipart
199
200
sass-rails (~> 3.2.3 )
201
+ sqlite3
200
202
thin
201
203
uglifier (>= 1.0.3 )
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ class Kandan.Views.ShowActivity extends Backbone.View
16
16
@compiledTemplate = Kandan .Helpers .Activities .buildFromMessageTemplate activity
17
17
18
18
$ (@el ).data (" activity-id" , activity .id )
19
+ if activity .action == " message" && activity .user_id == Kandan .Helpers .Users .currentUser ().id
20
+ $ (@el ).addClass (" current_user" )
21
+
19
22
if activity .id == undefined
20
23
$ (@el ).attr (" id" , " activity-c#{ activity .cid } " )
21
24
else
Original file line number Diff line number Diff line change 56
56
height : 30px
57
57
58
58
59
+ .current_user
60
+ background-color : #F0F0F0
Original file line number Diff line number Diff line change
1
+ # Postgres settings
2
+ # #################
3
+ # development:
4
+ # adapter: postgresql
5
+ # host: localhost
6
+ # database: kandan_development
7
+ # pool: 5
8
+ # timeout: 5000
9
+
10
+ development :
11
+ adapter : sqlite3
12
+ database : db/development.sqlite3
13
+ pool : 5
14
+ timeout : 5000
You can’t perform that action at this time.
0 commit comments