Difference between revisions of "User:Fbstj/gadget/history-test.js"

From The Coppermind
Jump to navigation Jump to search
m (dont link when no id)
m (oops)
Line 5: Line 5:
 
if (!v) return v;
 
if (!v) return v;
 
v = v.replace('.26', '&').replace('.27', "'");
 
v = v.replace('.26', '&').replace('.27', "'");
$('.title', this).append("<span style='float: right; font-size: small;' >[<a href='/edit/Template:"+v.replace('.+"'>edit</a>]</span>");
+
var a = "<a href='/edit/Template:" + v +"'>edit</a>";
  +
$('.title', this).append("<span style='float: right; font-size: small;' >[" + a + "]</span>");
 
})
 
})

Revision as of 14:32, 21 January 2015

/* Add edit buttons to templates */
$('.navbar').attr('id', function(i, v) { $('.title', this).append("<span style='float: right; font-size: small;' >[<a href='/edit/Template:"+v+"'>edit</a>]</span>"); })

$('.infobox').attr('id', function(i, v) {
  if (!v) return v;
  v = v.replace('.26', '&').replace('.27', "'");
  var a = "<a href='/edit/Template:" + v +"'>edit</a>";
  $('.title', this).append("<span style='float: right; font-size: small;' >[" + a + "]</span>");
})