Skip to content
This repository has been archived by the owner on Nov 14, 2018. It is now read-only.

Commit

Permalink
basically works on android, now fix for iphone
Browse files Browse the repository at this point in the history
  • Loading branch information
danmayer committed Mar 10, 2012
1 parent d8ff4e0 commit 5364578
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -31,7 +31,9 @@ This project aims to help tracking arbitrary events. Such as working out every d
* add live error reporting hoptoad or whatnot for site
* add hurl / api links to README
* possible phonegap compatibility for native android / iphone app.
* Twitter tweet text is getting displayed to the screen for some reason, fix it
* fix that sometimes clicking next/prev the month sometimes jumps back to where you are
* now deal with styling issues for iphone... thinkin CSS selector to deal with 320 screens.


### Later
* Build out as a generic rails or ActiveRecord plugin that syncs offline storage / json. Doesn't have to be on user model. Needs a unique id to associate / sync to and a key. Then you could have acts_as_syncable or some such on any model, or perhaps the plugin creates its own model with a foreign key to the declared model. either way to allow for generic sync, restore, and merge.
Expand Down
2 changes: 0 additions & 2 deletions app/views/site/test.html.erb
Expand Up @@ -26,8 +26,6 @@
</div>
</div>

<% @share_enabled = true %>

<script>
$(document).ready(function () {
animatedCalendars();
Expand Down
2 changes: 1 addition & 1 deletion public/javascripts/all.js
Expand Up @@ -540,7 +540,7 @@ var reset_calendar_year = function(){
var scroll_end = function(){
widths = Math.round(window.scrollX / shift_width);
current_position = widths * shift_width;
$('html,body').animate({ scrollLeft: current_position }, 200);
$('html,body').animate({ scrollLeft: current_position }, 100);
}

current_date = new Date();
Expand Down
6 changes: 3 additions & 3 deletions public/stylesheets/all.css
Expand Up @@ -206,10 +206,10 @@ a{
.footer {
font-size: 12px;
border-top: 1px solid black;
padding: 6px;
padding: 2px 6px;
position: fixed;
width: 100%;
top: 520px;
top: 490px;
height: 48px;
/*bottom: 0px;*/
z-index: 5;
Expand Down Expand Up @@ -492,7 +492,7 @@ ol.example, ul.example {
width:100%;
height:380px;
overflow:hidden;
padding:90px 0 20px 0;
padding:90px 0 4px 0;
text-align:-webkit-auto;
text-align:auto;
/*position:relative;*/
Expand Down

0 comments on commit 5364578

Please sign in to comment.