Commit d3278b46 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Rename comments.List to comments.FullList.

parent 3a027bfa
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
/**
 * Container for recent comments listing.
 * Container for listing of all the comments.
 * Sorted by date or votes.
 */
Ext.define('Docs.view.comments.List', {
Ext.define('Docs.view.comments.FullList', {
    extend: 'Ext.panel.Panel',
    alias: "widget.commentsList",
    alias: "widget.commentsFullList",
    requires: ['Docs.Settings'],
    componentCls: 'comment-index-container',

+2 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ Ext.define('Docs.view.comments.Index', {
    alias: 'widget.commentindex',
    mixins: ['Docs.view.Scrolling'],
    requires: [
        'Docs.view.comments.List',
        'Docs.view.comments.FullList',
        'Docs.view.comments.HeaderMenu',
        'Docs.view.comments.Users',
        'Docs.view.comments.Targets'
@@ -19,7 +19,7 @@ Ext.define('Docs.view.comments.Index', {
    items: [
        {
            region: "center",
            xtype: "commentsList"
            xtype: "commentsFullList"
        },
        {
            region: "east",