Пытаюсь скомпилировать jQuery с помощью
Google Closure Compiler файла
extern для jQuery.
Собственно в левом окне вставляю следующие инструкции + простой jQuery код
Код:
|
// ==ClosureCompiler==
// @output_file_name default.js
// @compilation_level ADVANCED_OPTIMIZATIONS
// @code_url http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js
// @externs_url https://closure-compiler.googlecode.com/git/contrib/externs/jquery-1.9.js
// @formatting pretty_print
// ==/ClosureCompiler==
jQuery(document).ready(function () {alert(0)}); |
Однако после компиляции, сгенерированный JS код не работает, выдает следующую ошибку:
Код:
|
Uncaught ReferenceError: jQuery is not defined |
Подскажите почему не работает? Может нужно что-то еще добавить?