# HG changeset patch # User Adam Chlipala # Date 1385068337 18000 # Node ID 2e7f8f7d71d456705ce0a19cb7400bc01d0c4fec # Parent d32fb0f7b137b10f67e593610fdfb46547dbcc41 Update for Ur/Web's new tag name resolution diff -r d32fb0f7b137 -r 2e7f8f7d71d4 remotePager.ur --- a/remotePager.ur Sun Jul 29 12:28:46 2012 -0400 +++ b/remotePager.ur Thu Nov 21 16:12:17 2013 -0500 @@ -13,15 +13,15 @@ fun defaultFormatLbl {First = fLbl, Back = bLbl, Next = nLbl, Last = lLbl} = let - fun mkLink c txt = fn a =>
  • a} class={c}> return ()}>{[txt]}
  • + fun mkLink c txt = fn x =>
  • x} class={c}> return ()}>{[txt]}
  • in {Width = 5, RangeCtl = {First = mkLink firstCtl fLbl, Back = mkLink backCtl bLbl, Next = mkLink nextCtl nLbl, Last = mkLink lastCtl lLbl}, - PageCtl = {Unsel = fn n a =>
  • a}> return ()}>{[n + 1]}
  • , - Sel = fn n a =>
  • a} class={curPage}> return ()}>{[n + 1]}
  • }, + PageCtl = {Unsel = fn n x =>
  • x}> return ()}>{[n + 1]}
  • , + Sel = fn n x =>
  • x} class={curPage}> return ()}>{[n + 1]}
  • }, WrapPageCtl = fn x => x, Wrap = fn {First = f, Back = b, Pages = p, Next = n, Last = l} => } end