Created
June 12, 2014 11:53
-
-
Save lgoldstien/f130db252ed9c8d97320 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
* 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