Search code examples
sproutcore

Graphic view with sproutcore


I'm starting with sproutcore and todos tutorial. My output is on picture below

enter image description here

I'm using chromium browser (linux). Sproutcore theme doesn't support this browser? Or how can I fixed it?

Thanks.


Solution

  • In your Buildfile, try to add :use_sprites => false.

    Here is an example:

    config :your_app,  
      :title => 'Your app', 
      :theme => 'sproutcore/ace',
      :use_sprites => false
    

    I think it's because of a bug with abbot when it combines images.

    And don't forget to reload sc_server ;-)