update package for demo app
This commit is contained in:
parent
a8ba592fd2
commit
d4c11fc3dd
6 changed files with 7219 additions and 8000 deletions
3592
build/ace/editor.js
3592
build/ace/editor.js
File diff suppressed because it is too large
Load diff
|
|
@ -79,7 +79,7 @@ define(function(k, n) {
|
|||
if(j) {
|
||||
var m = [];
|
||||
h.$renderLine(m, f, i[f - g].tokens);
|
||||
l.setInnerHtml(j, m.join)
|
||||
l.setInnerHtml(j, m.join(""))
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1,19 +1,42 @@
|
|||
|
||||
demo/startup.js
|
||||
demo/boot.js
|
||||
----------------
|
||||
pilot/fixoldbrowsers.js
|
||||
pilot/console.js
|
||||
pilot/useragent.js
|
||||
pilot/event.js
|
||||
pilot/stacktrace.js
|
||||
pilot/promise.js
|
||||
pilot/plugin_manager.js
|
||||
pilot/oop.js
|
||||
pilot/types.js
|
||||
pilot/event_emitter.js
|
||||
pilot/catalog.js
|
||||
pilot/settings.js
|
||||
pilot/environment.js
|
||||
pilot/types/basic.js
|
||||
pilot/lang.js
|
||||
pilot/canon.js
|
||||
pilot/types/command.js
|
||||
pilot/types/settings.js
|
||||
pilot/commands/settings.js
|
||||
pilot/typecheck.js
|
||||
pilot/commands/basic.js
|
||||
pilot/settings/canon.js
|
||||
pilot/index.js
|
||||
cockpit/cli.js
|
||||
cockpit/test/assert.js
|
||||
cockpit/test/testCli.js
|
||||
cockpit/ui/settings.js
|
||||
pilot/event.js
|
||||
pilot/dom.js
|
||||
pilot/keyboard/keyutil.js
|
||||
pilot/domtemplate.js
|
||||
cockpit/ui/requestView.js
|
||||
cockpit/ui/cliView.js
|
||||
cockpit/index.js
|
||||
ace/textinput.js
|
||||
ace/conf/keybindings/default_mac.js
|
||||
ace/conf/keybindings/default_win.js
|
||||
pilot/console.js
|
||||
pilot/stacktrace.js
|
||||
pilot/event_emitter.js
|
||||
pilot/catalog.js
|
||||
pilot/types.js
|
||||
pilot/canon.js
|
||||
ace/commands/default_commands.js
|
||||
ace/keybinding.js
|
||||
ace/range.js
|
||||
|
|
@ -25,7 +48,6 @@ ace/document.js
|
|||
ace/search.js
|
||||
ace/background_tokenizer.js
|
||||
ace/editor.js
|
||||
pilot/dom.js
|
||||
ace/layer/gutter.js
|
||||
ace/layer/marker.js
|
||||
ace/layer/text.js
|
||||
|
|
@ -50,48 +72,7 @@ ace/mode/php_highlight_rules.js
|
|||
ace/mode/php.js
|
||||
ace/undomanager.js
|
||||
demo/startup.js
|
||||
pilot/fixoldbrowsers.js
|
||||
|
||||
ace/editor.js
|
||||
----------------
|
||||
pilot/oop.js
|
||||
pilot/useragent.js
|
||||
pilot/event.js
|
||||
pilot/lang.js
|
||||
ace/textinput.js
|
||||
ace/conf/keybindings/default_mac.js
|
||||
ace/conf/keybindings/default_win.js
|
||||
pilot/console.js
|
||||
pilot/stacktrace.js
|
||||
pilot/event_emitter.js
|
||||
pilot/catalog.js
|
||||
pilot/types.js
|
||||
pilot/canon.js
|
||||
ace/commands/default_commands.js
|
||||
ace/keybinding.js
|
||||
ace/range.js
|
||||
ace/selection.js
|
||||
ace/tokenizer.js
|
||||
ace/mode/text_highlight_rules.js
|
||||
ace/mode/text.js
|
||||
ace/document.js
|
||||
ace/search.js
|
||||
ace/background_tokenizer.js
|
||||
ace/editor.js
|
||||
ace/undomanager.js
|
||||
pilot/dom.js
|
||||
ace/layer/gutter.js
|
||||
ace/layer/marker.js
|
||||
ace/layer/text.js
|
||||
ace/layer/cursor.js
|
||||
ace/scrollbar.js
|
||||
ace/renderloop.js
|
||||
ace/virtual_renderer.js
|
||||
ace/mode/doc_comment_highlight_rules.js
|
||||
ace/mode/javascript_highlight_rules.js
|
||||
ace/mode/matching_brace_outdent.js
|
||||
ace/mode/javascript.js
|
||||
ace/theme/textmate.js
|
||||
demo/boot.js
|
||||
|
||||
ace/theme/eclipse.js
|
||||
----------------
|
||||
|
|
|
|||
6822
build/demo/boot.js
6822
build/demo/boot.js
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,10 +1,8 @@
|
|||
var deps = ["pilot/fixoldbrowsers", "pilot/types/basic", "pilot/types/command", "pilot/types/settings", "pilot/commands/settings", "pilot/commands/basic", "pilot/settings/canon", "pilot/canon"], packages = deps.slice();
|
||||
packages.unshift("require", "exports", "module");
|
||||
define(packages, function(b, c) {
|
||||
c.startup = function(d, e) {
|
||||
deps.forEach(function(a) {
|
||||
a = b(a);
|
||||
typeof a.startup === "function" && a.startup(d, e)
|
||||
define(function(a, c) {
|
||||
var d = [a("pilot/fixoldbrowsers"), a("pilot/types/basic"), a("pilot/types/command"), a("pilot/types/settings"), a("pilot/commands/settings"), a("pilot/commands/basic"), a("pilot/settings/canon"), a("pilot/canon")];
|
||||
c.startup = function(e, f) {
|
||||
d.forEach(function(b) {
|
||||
typeof b.startup === "function" && b.startup(e, f)
|
||||
})
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue