twofactor_totp/js/settings.js

15 строки
313 B
JavaScript

(function (OC) {
'use strict';
OC.Settings = OC.Settings || {};
OC.Settings.TwoFactorTotp = OC.Settings.TwoFactorTotp || {};
$(function () {
var view = new OC.Settings.TwoFactorTotp.View({
el: $('#twofactor-totp-settings')
});
view.render();
});
})(OC);