mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
12 lines
309 B
JavaScript
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);
|
|
};
|
|
})();
|