Display a indicator for read-only pads in the main page
This commit is contained in:
parent
bf8c9a2c4b
commit
202925302e
@ -106,9 +106,17 @@ define([
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var readOnly = false;
|
||||||
|
if (pad.href.indexOf('#') !== -1) {
|
||||||
|
var modeArray = pad.href.split('#')[1].split('/');
|
||||||
|
if (modeArray.length >= 3 && modeArray[2] === 'view') {
|
||||||
|
readOnly = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var readOnlyText = readOnly ? '(' + Messages.readonly + ') ' : '';
|
||||||
$row
|
$row
|
||||||
.append($('<td>').text(name))
|
.append($('<td>').text(name))
|
||||||
.append($('<td>').append($('<a>', {
|
.append($('<td>').append(readOnlyText).append($('<a>', {
|
||||||
href: pad.href,
|
href: pad.href,
|
||||||
title: pad.title,
|
title: pad.title,
|
||||||
}).text(shortTitle)))
|
}).text(shortTitle)))
|
||||||
@ -134,6 +142,9 @@ define([
|
|||||||
|
|
||||||
if (hasRecent) {
|
if (hasRecent) {
|
||||||
$('table').attr('style', '');
|
$('table').attr('style', '');
|
||||||
|
// Race condition here, this is triggered before the localization in HTML
|
||||||
|
// so we have to remove the data-localization attr
|
||||||
|
$tryit.removeAttr('data-localization');
|
||||||
$tryit.text(Messages.recentPads);
|
$tryit.text(Messages.recentPads);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user