29 lines
776 B
JavaScript
29 lines
776 B
JavaScript
|
// ----------------------------------------------
|
||
|
// litnav.js
|
||
|
// ----------------------------------------------
|
||
|
|
||
|
// ----------------------------------------------
|
||
|
FORUM.Nav_cl = Class.create({
|
||
|
|
||
|
// ----------------------------------------------
|
||
|
initialize: function () {
|
||
|
this.render_px();
|
||
|
this.initHandler_p();
|
||
|
},
|
||
|
|
||
|
render_px: function (data_opl) {
|
||
|
$('#idNav .clLinkToLogout').hide();
|
||
|
},
|
||
|
|
||
|
initHandler_p: function () {
|
||
|
$("#idNav").on("click", "a", function (event_opl) {
|
||
|
var action_s = $(event_opl.target).attr('data-action');
|
||
|
FORUM.es_o.publish_px('ContentChanged', [action_s, null]);
|
||
|
|
||
|
event_opl.stopPropagation();
|
||
|
event_opl.preventDefault();
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// EOF
|