corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 ace.define("ace/ext/themelist",["require","exports","module","ace/lib/fixoldbrowsers"], function(require, exports, module) {
2 "use strict";
3 require("ace/lib/fixoldbrowsers");
4  
5 var themeData = [
6 ["Chrome" ],
7 ["Clouds" ],
8 ["Crimson Editor" ],
9 ["Dawn" ],
10 ["Dreamweaver" ],
11 ["Eclipse" ],
12 ["GitHub" ],
13 ["IPlastic" ],
14 ["Solarized Light"],
15 ["TextMate" ],
16 ["Tomorrow" ],
17 ["XCode" ],
18 ["Kuroir"],
19 ["KatzenMilch"],
20 ["SQL Server" ,"sqlserver" , "light"],
21 ["Ambiance" ,"ambiance" , "dark"],
22 ["Chaos" ,"chaos" , "dark"],
23 ["Clouds Midnight" ,"clouds_midnight" , "dark"],
24 ["Cobalt" ,"cobalt" , "dark"],
25 ["Gruvbox" ,"gruvbox" , "dark"],
26 ["idle Fingers" ,"idle_fingers" , "dark"],
27 ["krTheme" ,"kr_theme" , "dark"],
28 ["Merbivore" ,"merbivore" , "dark"],
29 ["Merbivore Soft" ,"merbivore_soft" , "dark"],
30 ["Mono Industrial" ,"mono_industrial" , "dark"],
31 ["Monokai" ,"monokai" , "dark"],
32 ["Pastel on dark" ,"pastel_on_dark" , "dark"],
33 ["Solarized Dark" ,"solarized_dark" , "dark"],
34 ["Terminal" ,"terminal" , "dark"],
35 ["Tomorrow Night" ,"tomorrow_night" , "dark"],
36 ["Tomorrow Night Blue" ,"tomorrow_night_blue" , "dark"],
37 ["Tomorrow Night Bright","tomorrow_night_bright" , "dark"],
38 ["Tomorrow Night 80s" ,"tomorrow_night_eighties" , "dark"],
39 ["Twilight" ,"twilight" , "dark"],
40 ["Vibrant Ink" ,"vibrant_ink" , "dark"]
41 ];
42  
43  
44 exports.themesByName = {};
45 exports.themes = themeData.map(function(data) {
46 var name = data[1] || data[0].replace(/ /g, "_").toLowerCase();
47 var theme = {
48 caption: data[0],
49 theme: "ace/theme/" + name,
50 isDark: data[2] == "dark",
51 name: name
52 };
53 exports.themesByName[name] = theme;
54 return theme;
55 });
56  
57 });
58 (function() {
59 ace.require(["ace/ext/themelist"], function() {});
60 })();
61