Changeset 18763 for lang/ruby

Show
Ignore:
Timestamp:
09/03/08 22:53:53 (4 months ago)
Author:
hajimehoshi
Message:

Modified for IE

Location:
lang/ruby/bokeshi/trunk/website/public
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/bokeshi/trunk/website/public/index.cgi

    r18756 r18763  
    11#!/usr/bin/env ruby 
    22 
     3$KCODE = "u" 
    34$LOAD_PATH << "../../" 
    45 
     
    7273    "row": #{next_removing.row}, 
    7374    "col": #{next_removing.col}, 
    74     "length": #{next_removing.length}, 
     75    "length": #{next_removing.length} 
    7576  } 
    7677} 
  • lang/ruby/bokeshi/trunk/website/public/javascripts/bokeshi.js

    r18756 r18763  
    5656 
    5757$(function () { 
    58     $.post("./", {}, function (data) { 
     58    $.post("./", {"dummy": (new Date()).getTime()}, function (data) { 
    5959        stage = data.stage; 
    6060        stage.reset = function () { 
     
    9999                $(".row").selectable("disable"); 
    100100                $("#waitingMessage").show(); 
    101                 $.post("./", {"stage": this.toRequestStr()}, function (data) { 
     101                var param = { 
     102                    "stage": this.toRequestStr(), 
     103                    "dummy": (new Date()).getTime() 
     104                }; 
     105                $.post("./", param, function (data) { 
    102106                    var nextRemoving = data.nextRemoving; 
    103107                    if (nextRemoving) { 
  • lang/ruby/bokeshi/trunk/website/public/stylesheets/style.css

    r18756 r18763  
    4040  padding: 0.25em 0.5em; 
    4141  position: fixed; 
     42  _position: absolute; 
    4243  right: 20px; 
    4344  top: 20px;