fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
smartxml: trigger events on attr change
[fnpeditor.git]
/
src
/
smartxml
/
events.js
diff --git a/src/smartxml/events.js
b/src/smartxml/events.js
new file mode 100644
(file)
index 0000000..
c5e84c4
--- /dev/null
+++ b/
src/smartxml/events.js
@@ -0,0
+1,18
@@
+define([
+
+], function() {
+
+'use strict';
+
+
+var ChangeEvent = function(type, meta) {
+ this.type = type;
+ this.meta = meta;
+};
+
+
+return {
+ ChangeEvent: ChangeEvent
+};
+
+});
\ No newline at end of file