Update ACE Editor to version 1.32.6
This commit is contained in:

committed by
Sebastian Serth

parent
0a473c7fd3
commit
b00d45521b
95
vendor/assets/javascripts/ace/ext-themelist.js
vendored
95
vendor/assets/javascripts/ace/ext-themelist.js
vendored
@@ -1,49 +1,57 @@
|
||||
define("ace/ext/themelist",["require","exports","module","ace/lib/fixoldbrowsers"], function(require, exports, module) {
|
||||
define("ace/ext/themelist",["require","exports","module"], function(require, exports, module){/**
|
||||
* Generates a list of themes available when ace was built.
|
||||
* @fileOverview Generates a list of themes available when ace was built.
|
||||
* @author <a href="mailto:matthewkastor@gmail.com">
|
||||
* Matthew Christopher Kastor-Inare III </a><br />
|
||||
* ☭ Hial Atropa!! ☭
|
||||
*/
|
||||
"use strict";
|
||||
require("ace/lib/fixoldbrowsers");
|
||||
|
||||
var themeData = [
|
||||
["Chrome" ],
|
||||
["Clouds" ],
|
||||
["Crimson Editor" ],
|
||||
["Dawn" ],
|
||||
["Dreamweaver" ],
|
||||
["Eclipse" ],
|
||||
["GitHub" ],
|
||||
["IPlastic" ],
|
||||
["Chrome"],
|
||||
["Clouds"],
|
||||
["Crimson Editor"],
|
||||
["Dawn"],
|
||||
["Dreamweaver"],
|
||||
["Eclipse"],
|
||||
["GitHub"],
|
||||
["IPlastic"],
|
||||
["Solarized Light"],
|
||||
["TextMate" ],
|
||||
["Tomorrow" ],
|
||||
["XCode" ],
|
||||
["TextMate"],
|
||||
["Tomorrow"],
|
||||
["XCode"],
|
||||
["Kuroir"],
|
||||
["KatzenMilch"],
|
||||
["SQL Server" ,"sqlserver" , "light"],
|
||||
["Ambiance" ,"ambiance" , "dark"],
|
||||
["Chaos" ,"chaos" , "dark"],
|
||||
["Clouds Midnight" ,"clouds_midnight" , "dark"],
|
||||
["Cobalt" ,"cobalt" , "dark"],
|
||||
["Gruvbox" ,"gruvbox" , "dark"],
|
||||
["Green on Black" ,"gob" , "dark"],
|
||||
["idle Fingers" ,"idle_fingers" , "dark"],
|
||||
["krTheme" ,"kr_theme" , "dark"],
|
||||
["Merbivore" ,"merbivore" , "dark"],
|
||||
["Merbivore Soft" ,"merbivore_soft" , "dark"],
|
||||
["Mono Industrial" ,"mono_industrial" , "dark"],
|
||||
["Monokai" ,"monokai" , "dark"],
|
||||
["Pastel on dark" ,"pastel_on_dark" , "dark"],
|
||||
["Solarized Dark" ,"solarized_dark" , "dark"],
|
||||
["Terminal" ,"terminal" , "dark"],
|
||||
["Tomorrow Night" ,"tomorrow_night" , "dark"],
|
||||
["Tomorrow Night Blue" ,"tomorrow_night_blue" , "dark"],
|
||||
["Tomorrow Night Bright","tomorrow_night_bright" , "dark"],
|
||||
["Tomorrow Night 80s" ,"tomorrow_night_eighties" , "dark"],
|
||||
["Twilight" ,"twilight" , "dark"],
|
||||
["Vibrant Ink" ,"vibrant_ink" , "dark"]
|
||||
["SQL Server", "sqlserver", "light"],
|
||||
["CloudEditor", "cloud_editor", "light"],
|
||||
["Ambiance", "ambiance", "dark"],
|
||||
["Chaos", "chaos", "dark"],
|
||||
["Clouds Midnight", "clouds_midnight", "dark"],
|
||||
["Dracula", "", "dark"],
|
||||
["Cobalt", "cobalt", "dark"],
|
||||
["Gruvbox", "gruvbox", "dark"],
|
||||
["Green on Black", "gob", "dark"],
|
||||
["idle Fingers", "idle_fingers", "dark"],
|
||||
["krTheme", "kr_theme", "dark"],
|
||||
["Merbivore", "merbivore", "dark"],
|
||||
["Merbivore Soft", "merbivore_soft", "dark"],
|
||||
["Mono Industrial", "mono_industrial", "dark"],
|
||||
["Monokai", "monokai", "dark"],
|
||||
["Nord Dark", "nord_dark", "dark"],
|
||||
["One Dark", "one_dark", "dark"],
|
||||
["Pastel on dark", "pastel_on_dark", "dark"],
|
||||
["Solarized Dark", "solarized_dark", "dark"],
|
||||
["Terminal", "terminal", "dark"],
|
||||
["Tomorrow Night", "tomorrow_night", "dark"],
|
||||
["Tomorrow Night Blue", "tomorrow_night_blue", "dark"],
|
||||
["Tomorrow Night Bright", "tomorrow_night_bright", "dark"],
|
||||
["Tomorrow Night 80s", "tomorrow_night_eighties", "dark"],
|
||||
["Twilight", "twilight", "dark"],
|
||||
["Vibrant Ink", "vibrant_ink", "dark"],
|
||||
["GitHub Dark", "github_dark", "dark"],
|
||||
["CloudEditor Dark", "cloud_editor_dark", "dark"]
|
||||
];
|
||||
|
||||
|
||||
exports.themesByName = {};
|
||||
exports.themes = themeData.map(function(data) {
|
||||
exports.themes = themeData.map(function (data) {
|
||||
var name = data[1] || data[0].replace(/ /g, "_").toLowerCase();
|
||||
var theme = {
|
||||
caption: data[0],
|
||||
@@ -55,8 +63,11 @@ exports.themes = themeData.map(function(data) {
|
||||
return theme;
|
||||
});
|
||||
|
||||
});
|
||||
(function() {
|
||||
window.require(["ace/ext/themelist"], function() {});
|
||||
}); (function() {
|
||||
window.require(["ace/ext/themelist"], function(m) {
|
||||
if (typeof module == "object" && typeof exports == "object" && module) {
|
||||
module.exports = m;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
Reference in New Issue
Block a user