fnp
/
fnpeditor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
editor: dropping a working draft
[fnpeditor.git]
/
src
/
smartxml
/
events.js
1
define([
2
3
], function() {
4
5
'use strict';
6
7
8
var ChangeEvent = function(type, meta) {
9
this.type = type;
10
this.meta = meta;
11
};
12
13
14
return {
15
ChangeEvent: ChangeEvent
16
};
17
18
});