UNPKG

infusion

Version:

Infusion is an application framework for developing flexible stuff with JavaScript

50 lines (42 loc) 1.54 kB
/* Copyright 2011-2016 OCAD University Copyright 2011 Lucendo Development Ltd. Licensed under the Educational Community License (ECL), Version 2.0 or the New BSD license. You may not use this file except in compliance with one these Licenses. You may obtain a copy of the ECL 2.0 License and BSD License at https://github.com/fluid-project/infusion/raw/master/Infusion-LICENSE.txt */ var fluid_2_0_0 = fluid_2_0_0 || {}; (function ($, fluid) { "use strict"; /************************************** * Full No Preview Preferences Editor * **************************************/ fluid.defaults("fluid.prefs.fullNoPreview", { gradeNames: ["fluid.prefs.prefsEditorLoader"], components: { prefsEditor: { container: "{that}.container", options: { listeners: { "afterReset.applyChanges": { listener: "{that}.applyChanges" }, "afterReset.save": { listener: "{that}.save", priority: "after:applyChanges" }, "onReady.boilOnReady": { listener: "{fullNoPreview}.events.onReady", args: "{fullNoPreview}" } } } } }, events: { onReady: null } }); })(jQuery, fluid_2_0_0);