view index.js @ 10:c0856c392096 default tip

Fixed link color on MSIE.
author Atul Varma <varmaa@toolness.com>
date Sun, 13 Jul 2008 14:12:39 +0000
parents 02ea8f3d6938
children
line wrap: on
line source

function processData(stories) {
  var parchment = "http://parchment.googlecode.com/svn/trunk/parchment.html";

  for (var i = 0; i < stories.length; i++) {
    $("#content").append(
      '<div class="story"><a href="' + parchment + '?story=' +
      location.href + stories[i].path + ".js" +
      '">' + stories[i].desc.entityify() + '</a></div>'
    );
  }
}

$(document).ready(function() {
  processData(stories);
});