fixing Options problem
parent
f10b14ef5b
commit
1b7f131602
|
@ -51,6 +51,7 @@
|
|||
<include>${basedir}/target/tmp/header-min.js</include>
|
||||
<include>${basedir}/target/tmp/Functions-min.js</include>
|
||||
<include>${basedir}/target/tmp/Utils-min.js</include>
|
||||
<include>${basedir}/../mindplot/src/main/javascript/Options.js</include>
|
||||
<include>${basedir}/../mindplot/src/main/javascript/libraries/bootstrap/BootstrapDialog.js</include>
|
||||
</includes>
|
||||
</aggregation>
|
||||
|
|
|
@ -125,6 +125,7 @@
|
|||
<includes>
|
||||
<include>header.js</include>
|
||||
<include>Events.js</include>
|
||||
<include>Options.js</include>
|
||||
<include>${basedir}/../web2d/target/classes/web2d.svg-min.js</include>
|
||||
<include>Messages.js</include>
|
||||
<include>TopicEventDispatcher.js</include>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
mindplot.Options = new Class({
|
||||
Options = new Class({
|
||||
|
||||
setOptions: function(){
|
||||
var options = this.options = Object.merge.apply(null, [{}, this.options].append(arguments));
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
var BootstrapDialog = new Class({
|
||||
Implements: mindplot.Options,
|
||||
Implements: Options,
|
||||
|
||||
options: {
|
||||
cancelButton: false,
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
*/
|
||||
|
||||
mindplot.widget.FloatingTip = new Class({
|
||||
Implements: [mindplot.Options, mindplot.Events],
|
||||
Implements: [Options, mindplot.Events],
|
||||
|
||||
options: {
|
||||
animation: true,
|
||||
|
|
Loading…
Reference in New Issue