for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* nextCloud - ocr
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
* @author Janis Koehr <[email protected]>
* @copyright Janis Koehr 2017
*/
(function (OC) {
'use strict';
OC.Settings = OC.Settings || {};
OC.Settings.Ocr = OC.Settings.Ocr || {};
$(function () {
var view = new OC.Settings.Ocr.View({
el: $('#ocr-settings')
});
view.render();
})(OC);
OC
/** global: OC */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.