Skip to content

Commit 8cee08f

Browse files
committed
added style for a users own messages
1 parent af47b5e commit 8cee08f

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ source 'https://rubygems.org'
33
# Core gems
44
gem 'rails', '3.2.2'
55

6+
group :development do
7+
gem 'sqlite3'
8+
end
69
# Database adapters
710
gem 'pg', '0.12.2'
811
# Uncomment this is you want to use sqlite locally

Gemfile.lock

+2
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ GEM
158158
hike (~> 1.2)
159159
rack (~> 1.0)
160160
tilt (~> 1.1, != 1.3.0)
161+
sqlite3 (1.3.6)
161162
thin (1.3.1)
162163
daemons (>= 1.0.9)
163164
eventmachine (>= 0.12.6)
@@ -197,5 +198,6 @@ DEPENDENCIES
197198
rails (= 3.2.2)
198199
remotipart
199200
sass-rails (~> 3.2.3)
201+
sqlite3
200202
thin
201203
uglifier (>= 1.0.3)

app/assets/javascripts/backbone/views/show_activity.js.coffee

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ class Kandan.Views.ShowActivity extends Backbone.View
1616
@compiledTemplate = Kandan.Helpers.Activities.buildFromMessageTemplate activity
1717

1818
$(@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+
1922
if activity.id == undefined
2023
$(@el).attr("id", "activity-c#{activity.cid}")
2124
else

app/assets/stylesheets/_activity.sass

+2
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,5 @@
5656
height: 30px
5757

5858

59+
.current_user
60+
background-color: #F0F0F0

config/database.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

0 commit comments

Comments
 (0)