mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
14 lines
478 B
JavaScript
14 lines
478 B
JavaScript
(function () {
|
|
var ns = $.namespace('pskl.controller.dialogs');
|
|
|
|
ns.UnsupportedBrowserController = function () {};
|
|
|
|
pskl.utils.inherit(ns.UnsupportedBrowserController, ns.AbstractDialogController);
|
|
|
|
ns.UnsupportedBrowserController.prototype.init = function () {
|
|
this.superclass.init.call(this);
|
|
var currentUserAgentElement = document.querySelector('#current-user-agent');
|
|
currentUserAgentElement.innerText = pskl.utils.UserAgent.getDisplayName();
|
|
};
|
|
})();
|