remove unnecessary (empty) view class

Discourse.ApplicationView does not provide any functionality above what
already automatically happens via Ember's "convention over
configuration" behavior and is therefore redundant.
This commit is contained in:
Wojciech Zawistowski 2013-09-20 17:52:38 +02:00
parent 085493e35d
commit 58ba8a0e49

View file

@ -1,13 +0,0 @@
/**
This view handles rendering of the core application template
@class ApplicationView
@extends Discourse.View
@namespace Discourse
@module Discourse
**/
Discourse.ApplicationView = Discourse.View.extend({
templateName: 'application'
});