Skip to content

Commit

Permalink
Updated to support demo app
Browse files Browse the repository at this point in the history
  • Loading branch information
BDQ committed Sep 7, 2011
1 parent 00cc3c3 commit d111a97
Show file tree
Hide file tree
Showing 92 changed files with 2,151 additions and 498 deletions.
24 changes: 23 additions & 1 deletion README.md
Expand Up @@ -3,13 +3,35 @@ SUMMARY

Rails Dog Radio Theme is a standalone theme for Spree Commerce version 0.70.0 or later.

This theme is now being used as the base theme for Spree demo store:

* [View Demo - http://demo.spreecommerce.com](http://demo.spreecommerce.com)
* [View Demo Repo - https://github.com/spree/demo](https://github.com/spree/demo)


This theme also currently supports (and will restyle the following
extensions if installed):

* [spree_social - https://github.com/spree/spree_social](https://github.com/spree/spree_social)
* [spree_wishlist - https://github.com/spree/spree_wishlist](https://github.com/spree/spree_wishlist)
* [spree_recently_viewed - https://github.com/spree/spree_recently_viewed](https://github.com/spree/spree_recently_viewed)
* [spree_related_products - https://github.com/spree/spree_related_products](https://github.com/spree/spree_related_products)
* [spree_paypal_express - https://github.com/spree/spree_paypal_express](https://github.com/spree/spree_paypal_express)


INSTALLATION
------------

Add the following line to your Gemfile:

gem 'spree_rdr_theme', :git => 'git://github.com/spree/spree_rdr_theme.git'

And install:
Run bunlder:

$ bundle install

Install assets:

$ rails g spree_rdr_theme:install


File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added app/assets/images/store/shadow_top.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
23 changes: 23 additions & 0 deletions app/assets/javascripts/store/rdr_wishlist.js
@@ -0,0 +1,23 @@
$(document).ready(function() {

if($('a#edit_wishlist_link').is('*')){
//handle wishlist edit link (show / hide form)
$('a#edit_wishlist_link').click(function(){
if($('#edit_wishlist').is(':visible')){
$('#edit_wishlist').slideUp();
}else{
$('#edit_wishlist').slideDown();
}

return false;
});

//handle move item link
$('.move_item a.button').click(function(){
var move_button = $(this);
move_button.hide();
move_button.parent().find('form').fadeIn();
return false;
});
}
});
263 changes: 0 additions & 263 deletions app/assets/stylesheets/datepicker.css

This file was deleted.

0 comments on commit d111a97

Please sign in to comment.