Dont really need a title

This commit is contained in:
Jordan Bates 2013-05-20 01:07:45 -07:00
parent f4059e723d
commit 9462910961
4 changed files with 7 additions and 7 deletions

View File

@ -4660,14 +4660,14 @@
});
},
initReady: function() {
var link, title;
var link;
QR.postingIsEnabled = !!$.id('postForm');
if (!QR.postingIsEnabled) {
return;
}
link = $.el('h1', {
innerHTML: "<a href=javascript:; title=" + title + " class='qr-link'>" + (title = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread') + "</a>",
innerHTML: "<a href=javascript:; class='qr-link'>" + (g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread') + "</a>",
className: "qr-link-container"
});
$.on(link.firstChild, 'click', function() {

View File

@ -4644,14 +4644,14 @@
});
},
initReady: function() {
var link, title;
var link;
QR.postingIsEnabled = !!$.id('postForm');
if (!QR.postingIsEnabled) {
return;
}
link = $.el('h1', {
innerHTML: "<a href=javascript:; title=" + title + " class='qr-link'>" + (title = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread') + "</a>",
innerHTML: "<a href=javascript:; class='qr-link'>" + (g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread') + "</a>",
className: "qr-link-container"
});
$.on(link.firstChild, 'click', function() {

View File

@ -4646,14 +4646,14 @@
});
},
initReady: function() {
var link, title;
var link;
QR.postingIsEnabled = !!$.id('postForm');
if (!QR.postingIsEnabled) {
return;
}
link = $.el('h1', {
innerHTML: "<a href=javascript:; title=" + title + " class='qr-link'>" + (title = g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread') + "</a>",
innerHTML: "<a href=javascript:; class='qr-link'>" + (g.VIEW === 'thread' ? 'Reply to Thread' : 'Start a Thread') + "</a>",
className: "qr-link-container"
});
$.on(link.firstChild, 'click', function() {

View File

@ -37,7 +37,7 @@ QR =
return unless QR.postingIsEnabled
link = $.el 'h1',
innerHTML: "<a href=javascript:; title=#{title} class='qr-link'>#{title = if g.VIEW is 'thread' then 'Reply to Thread' else 'Start a Thread'}</a>"
innerHTML: "<a href=javascript:; class='qr-link'>#{if g.VIEW is 'thread' then 'Reply to Thread' else 'Start a Thread'}</a>"
className: "qr-link-container"
$.on link.firstChild, 'click', ->
$.event 'CloseMenu'