zimjs 16.3.8 → 16.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/zim.js +5 -4
package/package.json
CHANGED
package/src/zim.js
CHANGED
|
@@ -23522,9 +23522,9 @@ height - (default 60) the height of the button or AUTO to fit height to label (s
|
|
|
23522
23522
|
label - (default "CLICK" or "" if icon or backing) ZIM Label or plain text with default settings (white)
|
|
23523
23523
|
---------- NORMAL MODE
|
|
23524
23524
|
backgroundColor - |ZIM VEE| (default purple) background color of button (any CSS color)
|
|
23525
|
-
also as of ZIM ZIM 01 any backgroundColor can be written as bgColor
|
|
23525
|
+
also as of ZIM ZIM 01 any backgroundColor parameter can be written as bgColor
|
|
23526
23526
|
rollBackgroundColor - |ZIM VEE| (default backgroundColor.lighten(.2)) rollover background color of button
|
|
23527
|
-
also as of ZIM ZIM 01 any backgroundColor can be written as bgColor - so rollBgColor works, etc.
|
|
23527
|
+
also as of ZIM ZIM 01 any backgroundColor parameter can be written as bgColor - so rollBgColor works, etc.
|
|
23528
23528
|
downBackgroundColor - |ZIM VEE| (default null) pressing down background color of button
|
|
23529
23529
|
color - |ZIM VEE| (default white) label color of button (any CSS color) unless a custom Label is set
|
|
23530
23530
|
rollColor - |ZIM VEE| (default white) rollover label color of button
|
|
@@ -26609,11 +26609,12 @@ added, click, dblclick, mousedown, mouseout, mouseover, pressdown (ZIM), pressmo
|
|
|
26609
26609
|
}
|
|
26610
26610
|
closeIcon.expand(40);
|
|
26611
26611
|
closeIcon.cur("pointer");
|
|
26612
|
-
closeIcon.on((!zns?WW.ACTIONEVENT=="mousedown":zim.ACTIONEVENT=="mousedown")?"mousedown":"click", function () {
|
|
26612
|
+
closeIcon.on((!zns?WW.ACTIONEVENT=="mousedown":zim.ACTIONEVENT=="mousedown")?"mousedown":"click", function (e) {
|
|
26613
26613
|
var s = that.stage;
|
|
26614
26614
|
that.removeFrom();
|
|
26615
26615
|
that.dispatchEvent("close");
|
|
26616
26616
|
s.update();
|
|
26617
|
+
e.stopImmediatePropagation();
|
|
26617
26618
|
});
|
|
26618
26619
|
}
|
|
26619
26620
|
this.add = function(obj, index, center, replace) {
|
|
@@ -65976,7 +65977,7 @@ zim.TextureActivesManager = function(stage, toggleKey, damp) {
|
|
|
65976
65977
|
width:200,
|
|
65977
65978
|
height:80,
|
|
65978
65979
|
titleBar:"TextureActives",
|
|
65979
|
-
draggable:true,
|
|
65980
|
+
// draggable:true,
|
|
65980
65981
|
close:true
|
|
65981
65982
|
}).pos(50,50,RIGHT,BOTTOM);
|
|
65982
65983
|
var slider = this.slider = new zim.Slider({min:0, max:100, damp:true})
|