Skip to content

Instantly share code, notes, and snippets.

@lgoldstien
Created June 12, 2014 11:53
Show Gist options
  • Save lgoldstien/f130db252ed9c8d97320 to your computer and use it in GitHub Desktop.
Save lgoldstien/f130db252ed9c8d97320 to your computer and use it in GitHub Desktop.
/***
* Base editor - From which all of our slickgrid editors are derived
* @module Editors
* @namespace Slick
*/
(function ($) {
function BaseEditor() {}
/** Create the Slick.Editors object if it does not exist */
if (!window.Slick.Editors)
window.Slick.Editors = {};
/** Extend the Slick.Editors */
$.extend(true, window.Slick.Editors, {
"Base": BaseEditor
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment