README_HUE 814 B

1234567891011121314151617181920
  1. Changes have been made to the Protovis code base by Hue.
  2. To find changes search directory for 'HUE CHANGE'
  3. Files:
  4. Makefile
  5. --------
  6. * removed js/lang/init.js from concat.
  7. * This is done for efficency. We don't use function expressions that require the eval within init.js
  8. js/mark/Panel.js
  9. ----------------
  10. * modified the pv.Panel.prototype.buildImplied function.
  11. * The following isn't the best solution, however it has the least impact on the library.
  12. * There is some discussion going on how protovis is going to expose its interface for easier dynamic scripting.
  13. * Waiting for resolution before dramatic impact is made on code base.
  14. * In short I wanted the ability to have the graph injected into an element instead of before it in the DOM tree.
  15. * This does not break any demos or existing API.