mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
fixing Options problem
This commit is contained in:
parent
f1a63fbd09
commit
001f62b539
@ -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
Block a user