1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-28 20:45:00 +03:00

Исправлен селектор в компоненте wall

This commit is contained in:
Denis Shakhov 2015-04-16 20:48:07 +07:00
parent 52c862c4fd
commit fd1946a995

View file

@ -151,7 +151,7 @@
* Получает запись по ID * Получает запись по ID
*/ */
getEntryById: function( id ) { getEntryById: function( id ) {
return this.element.find( this.option( 'selectors.entry.self' ) + '[data-id=' + id + ']' ).eq( 0 ); return this.element.find( this.option( 'selectors.entry' ) + '[data-id=' + id + ']' ).eq( 0 );
}, },
/** /**