Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4135993
mode-plain_text.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
mode-plain_text.js
View Options
ace
.
define
(
"ace/mode/plain_text"
,[
"require"
,
"exports"
,
"module"
,
"ace/lib/oop"
,
"ace/mode/text"
,
"ace/mode/text_highlight_rules"
,
"ace/mode/behaviour"
],
function
(
require
,
exports
,
module
){
"use strict"
;
var
oop
=
require
(
"../lib/oop"
);
var
TextMode
=
require
(
"./text"
).
Mode
;
var
TextHighlightRules
=
require
(
"./text_highlight_rules"
).
TextHighlightRules
;
var
Behaviour
=
require
(
"./behaviour"
).
Behaviour
;
var
Mode
=
function
()
{
this
.
HighlightRules
=
TextHighlightRules
;
this
.
$behaviour
=
new
Behaviour
();
};
oop
.
inherits
(
Mode
,
TextMode
);
(
function
()
{
this
.
type
=
"text"
;
this
.
getNextLineIndent
=
function
(
state
,
line
,
tab
)
{
return
''
;
};
this
.
$id
=
"ace/mode/plain_text"
;
}).
call
(
Mode
.
prototype
);
exports
.
Mode
=
Mode
;
});
(
function
()
{
ace
.
require
([
"ace/mode/plain_text"
],
function
(
m
)
{
if
(
typeof
module
==
"object"
&&
typeof
exports
==
"object"
&&
module
)
{
module
.
exports
=
m
;
}
});
})();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Aug 19, 13:29 (3 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e2/88/c8f1331dca6dcf1c718750b87e8c
Default Alt Text
mode-plain_text.js (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment