Commit 88da3e52 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Remove trailing comma from Inline examples.

parent 539d52d0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ Ext.define('Docs.view.examples.Inline', {
    constructor: function() {
        this.callParent(arguments);

        this.addEvents([
        this.addEvents(
            /**
             * @event previewsuccess
             * Fired when preview was successfully created.
@@ -52,8 +52,8 @@ Ext.define('Docs.view.examples.Inline', {
             * @param {Ext.Component} preview
             * @param {Error} e
             */
            'previewfailure',
        ]);
            'previewfailure'
        );
    },

    initComponent: function() {