removed debug comments

This commit is contained in:
Julian Lam
2013-08-11 13:23:41 -04:00
parent 26944ae686
commit 9bf8739841

View File

@@ -43,9 +43,9 @@ $(document).ready(function() {
if (topicEls[x].getAttribute('data-pinned') === '1') topicEls[x].querySelector('[data-action="pin"]').className += ' active';
if (topicEls[x].getAttribute('data-locked') === '1') topicEls[x].querySelector('[data-action="lock"]').className += ' active';
if (topicEls[x].getAttribute('data-deleted') === '1') topicEls[x].querySelector('[data-action="delete"]').className += ' active';
// topicEls[x].removeAttribute('data-pinned');
// topicEls[x].removeAttribute('data-locked');
// topicEls[x].removeAttribute('data-deleted');
topicEls[x].removeAttribute('data-pinned');
topicEls[x].removeAttribute('data-locked');
topicEls[x].removeAttribute('data-deleted');
}
});