piskel/dev/js/controller/dialogs/PerformanceInfoController.js
2017-05-22 09:56:42 +02:00

12 lines
309 B
JavaScript

(function () {
var ns = $.namespace('pskl.controller.dialogs');
ns.PerformanceInfoController = function () {};
pskl.utils.inherit(ns.PerformanceInfoController, ns.AbstractDialogController);
ns.PerformanceInfoController.prototype.init = function () {
this.superclass.init.call(this);
};
})();