From c447415d9ff317e8d342d27cf99029724137e20d Mon Sep 17 00:00:00 2001 From: Ilya Zhitomirskiy <iz268@nyu.edu> Date: Mon, 24 Oct 2011 15:57:25 -0700 Subject: [PATCH] allowing users to dismiss new user toolips --- app/views/aspects/index.html.haml | 13 ++++++++----- config/routes.rb | 1 + 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml index 9426713958..32a14e18a7 100644 --- a/app/views/aspects/index.html.haml +++ b/app/views/aspects/index.html.haml @@ -8,11 +8,14 @@ - if current_user.getting_started? #welcome-to-diaspora - .container - %h1 - = t('.welcome_to_diaspora', :name => current_user.first_name) - %h3 - = t('.time_to_introduce_yourself') + .container{:style => "position: relative;"} + .right + = link_to image_tag('deletelabel.png'), getting_started_completed_path + .span-23 + %h1 + = t('.welcome_to_diaspora', :name => current_user.first_name) + %h3 + = t('.time_to_introduce_yourself') %br %br %br diff --git a/config/routes.rb b/config/routes.rb index 2b32fd6e64..7e55b665f6 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -69,6 +69,7 @@ Diaspora::Application.routes.draw do # Users and people resource :user, :only => [:edit, :update, :destroy], :shallow => true do + get :getting_started_completed get :export get :export_photos end -- GitLab