diff options
author | Ben Combee <ben.combee@gmail.com> | 2012-11-27 13:07:07 -0800 |
---|---|---|
committer | Ben Combee <ben.combee@gmail.com> | 2012-11-27 13:08:24 -0800 |
commit | b90fd98f9c6f9433d46df6eebd4f3bfa75447ca9 (patch) | |
tree | 7322375c6af67f331b0a9a4cbb368280cc2e3a9a /api/build | |
parent | 80dc190ae6a2f6c53a00759b1ede087e9690ecfc (diff) | |
download | biblez-ng-b90fd98f9c6f9433d46df6eebd4f3bfa75447ca9.tar.gz |
Update bootplate API tool for 2.1.1
Diffstat (limited to 'api/build')
-rw-r--r-- | api/build/app.css | 8 | ||||
-rw-r--r-- | api/build/app.js | 83 | ||||
-rw-r--r-- | api/build/enyo.css | 6 | ||||
-rw-r--r-- | api/build/enyo.js | 168 |
4 files changed, 200 insertions, 65 deletions
diff --git a/api/build/app.css b/api/build/app.css index 685a1db..83ab388 100644 --- a/api/build/app.css +++ b/api/build/app.css @@ -232,6 +232,14 @@ } +/* /home/enyojs/git/api-tool/enyo/tools/../../lib/layout/imageview/source/ImageViewPin.css */ + + +.pinDebug { + background:yellow; + border:1px solid yellow; +} + /* ../source/foss/syntaxhighlighter_3.0.83_fork/sh-min.css */ diff --git a/api/build/app.js b/api/build/app.js index 22f1636..9b6e111 100644 --- a/api/build/app.js +++ b/api/build/app.js @@ -819,7 +819,7 @@ return this.controlsIndex = t, i; statics: { positionControl: function(e, t, n) { var r = n || "px"; -if (!this.updating) if (enyo.dom.canTransform() && !enyo.platform.android) { +if (!this.updating) if (enyo.dom.canTransform() && !enyo.platform.android && enyo.platform.ie !== 10) { var i = t.left, s = t.top; i = enyo.isString(i) ? i : i && i + r, s = enyo.isString(s) ? s : s && s + r, enyo.dom.transform(e, { translateX: i || null, @@ -1180,8 +1180,11 @@ this.setLayoutKind(this.arrangerKind); narrowFitChanged: function() { this.addRemoveClass("enyo-panels-fit-narrow", this.narrowFit); }, +destroy: function() { +this.destroying = !0, this.inherited(arguments); +}, removeControl: function(e) { -this.inherited(arguments), this.controls.length > 0 && this.isPanel(e) && (this.setIndex(Math.max(this.index - 1, 0)), this.flow(), this.reflow()); +this.inherited(arguments), this.destroying && this.controls.length > 0 && this.isPanel(e) && (this.setIndex(Math.max(this.index - 1, 0)), this.flow(), this.reflow()); }, isPanel: function() { return !0; @@ -1456,6 +1459,57 @@ this.$.client && (this.expanded ? this._expand() : this._collapse()); } }); +// ImageViewPin.js + +enyo.kind({ +name: "enyo.ImageViewPin", +kind: "enyo.Control", +published: { +highlightAnchorPoint: !1, +anchor: { +top: 0, +left: 0 +}, +position: { +top: 0, +left: 0 +} +}, +style: "position:absolute;z-index:1000;width:0px;height:0px;", +handlers: { +onPositionPin: "reAnchor" +}, +create: function() { +this.inherited(arguments), this.styleClientControls(), this.positionClientControls(), this.highlightAnchorPointChanged(), this.anchorChanged(); +}, +styleClientControls: function() { +var e = this.getClientControls(); +for (var t = 0; t < e.length; t++) e[t].applyStyle("position", "absolute"); +}, +positionClientControls: function() { +var e = this.getClientControls(); +for (var t = 0; t < e.length; t++) for (p in this.position) e[t].applyStyle(p, this.position[p] + "px"); +}, +highlightAnchorPointChanged: function() { +this.highlightAnchorPoint ? this.addClass("pinDebug") : this.removeClass("pinDebug"); +}, +anchorChanged: function() { +var e = null, t = null; +for (t in this.anchor) { +e = this.anchor[t].toString().match(/^(\d+(?:\.\d+)?)(.*)$/); +if (!e) continue; +this.anchor[t + "Coords"] = { +value: e[1], +units: e[2] || "px" +}; +} +}, +reAnchor: function(e, t) { +var n = t.scale, r = t.bounds, i = this.anchor.right ? this.anchor.rightCoords.units == "px" ? r.width + r.x - this.anchor.rightCoords.value * n : r.width * (100 - this.anchor.rightCoords.value) / 100 + r.x : this.anchor.leftCoords.units == "px" ? this.anchor.leftCoords.value * n + r.x : r.width * this.anchor.leftCoords.value / 100 + r.x, s = this.anchor.bottom ? this.anchor.bottomCoords.units == "px" ? r.height + r.y - this.anchor.bottomCoords.value * n : r.height * (100 - this.anchor.bottomCoords.value) / 100 + r.y : this.anchor.topCoords.units == "px" ? this.anchor.topCoords.value * n + r.y : r.height * this.anchor.topCoords.value / 100 + r.y; +this.applyStyle("left", i + "px"), this.applyStyle("top", s + "px"); +} +}); + // ImageView.js enyo.kind({ @@ -1499,7 +1553,7 @@ ondown: "down" } ] } ], create: function() { -this.inherited(arguments), this.canTransform = enyo.dom.canTransform(), this.canTransform || this.$.image.applyStyle("position", "relative"), this.canAccelerate = enyo.dom.canAccelerate(), this.bufferImage = new Image, this.bufferImage.onload = enyo.bind(this, "imageLoaded"), this.bufferImage.onerror = enyo.bind(this, "imageError"), this.srcChanged(), this.getStrategy().setDragDuringGesture(!1); +this.inherited(arguments), this.canTransform = enyo.dom.canTransform(), this.canTransform || this.$.image.applyStyle("position", "relative"), this.canAccelerate = enyo.dom.canAccelerate(), this.bufferImage = new Image, this.bufferImage.onload = enyo.bind(this, "imageLoaded"), this.bufferImage.onerror = enyo.bind(this, "imageError"), this.srcChanged(), this.getStrategy().setDragDuringGesture(!1), this.getStrategy().$.scrollMath.start(); }, down: function(e, t) { t.preventDefault(); @@ -1520,7 +1574,7 @@ srcChanged: function() { this.src && this.src.length > 0 && this.bufferImage && this.src != this.bufferImage.src && (this.bufferImage.src = this.src); }, imageLoaded: function(e) { -this.originalWidth = this.bufferImage.width, this.originalHeight = this.bufferImage.height, this.scaleChanged(), this.$.image.setSrc(this.bufferImage.src), enyo.dom.transformValue(this.getStrategy().$.client, "translate3d", "0px, 0px, 0"); +this.originalWidth = this.bufferImage.width, this.originalHeight = this.bufferImage.height, this.scaleChanged(), this.$.image.setSrc(this.bufferImage.src), enyo.dom.transformValue(this.getStrategy().$.client, "translate3d", "0px, 0px, 0"), this.positionClientControls(this.scale); }, resizeHandler: function() { this.inherited(arguments), this.$.image.src && this.scaleChanged(); @@ -1575,7 +1629,7 @@ height: this.imageBounds.height + "px", left: this.imageBounds.left + "px", top: this.imageBounds.top + "px" }); -this.setScrollLeft(n), this.setScrollTop(r); +this.setScrollLeft(n), this.setScrollTop(r), this.positionClientControls(e); }, limitScale: function(e) { return this.disableZoom ? e = this.scale : e > this.maxScale ? e = this.maxScale : e < this.minScale && (e = this.minScale), e; @@ -1639,6 +1693,12 @@ zoomAnimationEnd: function(e, t) { this.doZoom({ scale: this.scale }), this.$.animator.ratioLock = undefined; +}, +positionClientControls: function(e) { +this.waterfallDown("onPositionPin", { +scale: e, +bounds: this.imageBounds +}); } }); @@ -2293,16 +2353,9 @@ return Documentor.findByProperty(this.objects, "name", e); findByTopic: function(e) { return Documentor.findByProperty(this.objects, "topic", e); }, -getKindList: function(e, t) { -this.debug && enyo.log("getEnyoKindList --> result - regexp: " + e + " group: " + t); -var n = []; -for (var r = 0, i; i = this.objects[r]; r++) i.type === "kind" && i.token === "enyo.kind" && i.group === t && e.test(i.name) && (this.debug && enyo.log("getEnyoKindList --> this.objects[" + r + "]: type: " + i.type + " token: " + i.token + " group: " + i.group + " name: " + i.name), n.push(i.name)); -return n; -}, -getFunctionList: function(e, t) { -var n = []; -for (var r = 0, i; i = this.objects[r]; r++) i.type === "function" && i.group === t && e.test(i.name) && n.push(i.name); -return n; +search: function(e, t, n) { +var r = enyo.filter(this.objects, e, n); +return enyo.map(r, t, n); }, addModules: function(e) { enyo.forEach(e, this.addModule, this), this.objects.sort(Indexer.nameCompare); diff --git a/api/build/enyo.css b/api/build/enyo.css index e3de23c..cad8603 100644 --- a/api/build/enyo.css +++ b/api/build/enyo.css @@ -30,6 +30,10 @@ body.webkitOverflowScrolling { position: relative; } +.enyo-no-touch-action { + -ms-touch-action: none; +} + /* reset */ button { @@ -41,6 +45,7 @@ button { .enyo-unselectable { cursor: default; + -ms-user-select: none; -webkit-user-select: none; -moz-user-select: -moz-none; user-select: none; @@ -52,6 +57,7 @@ button { .enyo-selectable { cursor: auto; + -ms-user-select: element; -webkit-user-select: text; -moz-user-select: text; user-select: text; diff --git a/api/build/enyo.js b/api/build/enyo.js index f2b2331..2bde931 100644 --- a/api/build/enyo.js +++ b/api/build/enyo.js @@ -16,7 +16,7 @@ node: r var t = enyo.locateScript(e); if (t) { enyo.args.root = (enyo.args.root || t.path).replace("/source", ""); -for (var n = 0, r; r = t.node.attributes.item(n); n++) enyo.args[r.nodeName] = r.value; +for (var n = 0, r = t.node.attributes.length, i; n < r && (i = t.node.attributes.item(n)); n++) enyo.args[i.nodeName] = i.value; } })(); @@ -474,7 +474,7 @@ _log: function(e, t) { if (enyo.logging.shouldLog(e)) try { throw new Error; } catch (n) { -enyo.logging._log(e, [ t.callee.caller.nom + ": " ].concat(enyo.cloneArray(t))), console.log(n.stack); +enyo.logging._log(e, [ t.callee.caller.nom + ": " ].concat(enyo.cloneArray(t))), enyo.log(n.stack); } } }), enyo._objectCount = 0, enyo.Object.subclass = function(e, t) { @@ -654,7 +654,7 @@ for (var i in n) this.addEvent(i, n[i], r); } }, enyo.Component.addEvent = function(e, t, n) { var r, i; -enyo.isString(t) ? (e.slice(0, 2) != "on" && (console.warn("enyo.Component.addEvent: event names must start with 'on'. " + n.kindName + " event '" + e + "' was auto-corrected to 'on" + e + "'."), e = "on" + e), r = t, i = "do" + enyo.cap(e.slice(2))) : (r = t.value, i = t.caller), n[e] = r, n[i] || (n[i] = function(t) { +enyo.isString(t) ? (e.slice(0, 2) != "on" && (enyo.warn("enyo.Component.addEvent: event names must start with 'on'. " + n.kindName + " event '" + e + "' was auto-corrected to 'on" + e + "'."), e = "on" + e), r = t, i = "do" + enyo.cap(e.slice(2))) : (r = t.value, i = t.caller), n[e] = r, n[i] || (n[i] = function(t) { return this.bubble(e, t); }); }, enyo.Component.prefixFromKindName = function(e) { @@ -947,19 +947,23 @@ document.cookie = r; enyo.xhr = { request: function(e) { -var t = this.getXMLHttpRequest(e.url), n = e.method || "GET", r = !e.sync; +var t = this.getXMLHttpRequest(e), n = e.method || "GET", r = !e.sync; e.username ? t.open(n, enyo.path.rewrite(e.url), r, e.username, e.password) : t.open(n, enyo.path.rewrite(e.url), r), enyo.mixin(t, e.xhrFields), e.callback && this.makeReadyStateHandler(t, e.callback); -if (e.headers) for (var i in e.headers) t.setRequestHeader(i, e.headers[i]); -return typeof t.overrideMimeType == "function" && e.mimeType && t.overrideMimeType(e.mimeType), t.send(e.body || null), !r && e.callback && t.onreadystatechange(t), t; +if (e.headers && t.setRequestHeader) for (var i in e.headers) t.setRequestHeader(i, e.headers[i]); +return n !== "GET" && t.setRequestHeader("cache-control", "no-cache"), typeof t.overrideMimeType == "function" && e.mimeType && t.overrideMimeType(e.mimeType), t.send(e.body || null), !r && e.callback && t.onreadystatechange(t), t; }, cancel: function(e) { e.onload && (e.onload = null), e.onreadystatechange && (e.onreadystatechange = null), e.abort && e.abort(); }, makeReadyStateHandler: function(e, t) { window.XDomainRequest && e instanceof XDomainRequest && (e.onload = function() { -t.apply(null, [ e.responseText, e ]); +var n; +typeof e.responseText == "string" && (n = e.responseText), t.apply(null, [ n, e ]); }), e.onreadystatechange = function() { -e.readyState == 4 && t.apply(null, [ e.responseText, e ]); +if (e.readyState == 4) { +var n; +typeof e.responseText == "string" && (n = e.responseText), t.apply(null, [ n, e ]); +} }; }, inOrigin: function(e) { @@ -970,7 +974,7 @@ return n; }, getXMLHttpRequest: function(e) { try { -if (window.XDomainRequest && !this.inOrigin(e) && !/^file:\/\//.test(window.location.href)) return new XDomainRequest; +if (enyo.platform.ie < 10 && window.XDomainRequest && !e.headers && !this.inOrigin(e.url) && !/^file:\/\//.test(window.location.href)) return new XDomainRequest; } catch (t) {} try { return new XMLHttpRequest; @@ -1009,16 +1013,16 @@ go: function(e) { return this.startTimer(), this.request(e), this; }, request: function(e) { -var t = this.url.split("?"), n = t.shift() || "", r = t.length ? t.join("?").split("&") : [], i = enyo.isString(e) ? e : enyo.Ajax.objectToQuery(e); -this.method == "GET" && (i && (r.push(i), i = null), this.cacheBust && !/^file:/i.test(n) && r.push(Math.random())); +var t = this.url.split("?"), n = t.shift() || "", r = t.length ? t.join("?").split("&") : [], i = null; +enyo.isString(e) ? i = e : e && r.push(enyo.Ajax.objectToQuery(e)), this.method == "GET" && (i && (r.push(i), i = null), this.cacheBust && !/^file:/i.test(n) && r.push(Math.random())); var s = r.length ? [ n, r.join("&") ].join("?") : n, o = {}; -this.method != "GET" && (o["Content-Type"] = this.contentType), enyo.mixin(o, this.headers); +i = this.postBody || i, this.method != "GET" && (this.method === "POST" && window.FormData && i instanceof FormData || (o["Content-Type"] = this.contentType)), enyo.mixin(o, this.headers), enyo.keys(o).length === 0 && (o = undefined); try { this.xhr = enyo.xhr.request({ url: s, method: this.method, callback: enyo.bind(this, "receive"), -body: this.postBody || i, +body: i, headers: o, sync: window.PalmSystem ? !1 : this.sync, username: this.username, @@ -1031,7 +1035,14 @@ this.fail(u); } }, receive: function(e, t) { -!this.failed && !this.destroyed && (this.isFailure(t) ? this.fail(t.status) : this.respond(this.xhrToResponse(t))); +if (!this.failed && !this.destroyed) { +var n; +typeof t.responseText == "string" && (n = t.responseText), this.xhrResponse = { +status: t.status, +headers: enyo.Ajax.parseResponseHeaders(t), +body: n +}, this.isFailure(t) ? this.fail(t.status) : this.respond(this.xhrToResponse(t)); +} }, fail: function(e) { this.xhr && (enyo.xhr.cancel(this.xhr), this.xhr = null), this.inherited(arguments); @@ -1072,6 +1083,18 @@ if (enyo.isArray(s)) for (var u = 0; u < s.length; u++) n.push(o + t(s[u])); els } } return n.join("&"); +}, +parseResponseHeaders: function(e) { +var t = {}, n = []; +e.getAllResponseHeaders && (n = e.getAllResponseHeaders().split(/\r?\n/)); +for (var r = 0; r < n.length; r++) { +var i = n[r], s = i.indexOf(": "); +if (s > 0) { +var o = i.substring(0, s).toLowerCase(), u = i.substring(s + 2); +t[o] = u; +} +} +return t; } } }); @@ -1139,7 +1162,8 @@ kind: enyo._AjaxComponent, published: { jsonp: !1, callbackName: "callback", -charset: null +charset: null, +timeout: 0 }, events: { onResponse: "", @@ -1156,14 +1180,15 @@ var t = new enyo.JsonpRequest; for (var n in { url: 1, callbackName: 1, -charset: 1 +charset: 1, +timeout: 1 }) t[n] = this[n]; return this.sendAsync(t, e); }, sendAjax: function(e) { var t = new enyo.Ajax; for (var n in enyo.AjaxProperties) t[n] = this[n]; -return this.sendAsync(t, e); +return t.timeout = this.timeout, this.sendAsync(t, e); }, sendAsync: function(e, t) { return e.go(t).response(this, "response").error(this, "error"); @@ -1408,7 +1433,7 @@ setupBodyFitting: function() { enyo.dom.applyBodyFit(), this.addClass("enyo-fit enyo-clip"); }, setupOverflowScrolling: function() { -if (enyo.platform.android || enyo.platform.androidChrome) return; +if (enyo.platform.android || enyo.platform.androidChrome || enyo.platform.blackberry) return; document.getElementsByTagName("body")[0].className += " webkitOverflowScrolling"; }, render: function() { @@ -1421,10 +1446,10 @@ return this.hasNode() || this.renderNode(), this.hasNode() && (this.renderDom(), renderInto: function(e) { this.teardownRender(); var t = enyo.dom.byId(e); -return t == document.body ? this.setupBodyFitting() : this.fit && this.addClass("enyo-fit enyo-clip"), this.setupOverflowScrolling(), t.innerHTML = this.generateHtml(), this.rendered(), this; +return t == document.body ? this.setupBodyFitting() : this.fit && this.addClass("enyo-fit enyo-clip"), this.addClass("enyo-no-touch-action"), this.setupOverflowScrolling(), t.innerHTML = this.generateHtml(), this.rendered(), this; }, write: function() { -return this.fit && this.setupBodyFitting(), this.setupOverflowScrolling(), document.write(this.generateHtml()), this.rendered(), this; +return this.fit && this.setupBodyFitting(), this.addClass("enyo-no-touch-action"), this.setupOverflowScrolling(), document.write(this.generateHtml()), this.rendered(), this; }, rendered: function() { this.reflow(); @@ -1630,8 +1655,8 @@ n.kindAttributes = enyo.mixin(enyo.clone(s), n.attributes), n.attributes = null; // platform.js enyo.platform = { -touch: Boolean("ontouchstart" in window || window.navigator.msPointerEnabled), -gesture: Boolean("ongesturestart" in window || window.navigator.msPointerEnabled) +touch: Boolean("ontouchstart" in window || window.navigator.msMaxTouchPoints), +gesture: Boolean("ongesturestart" in window || window.navigator.msMaxTouchPoints) }, function() { var e = navigator.userAgent, t = enyo.platform, n = [ { platform: "androidChrome", @@ -1642,11 +1667,17 @@ regex: /Android (\d+)/ }, { platform: "android", regex: /Silk\/1./, -forceVersion: 2 +forceVersion: 2, +extra: { +silk: 1 +} }, { platform: "android", regex: /Silk\/2./, -forceVersion: 4 +forceVersion: 4, +extra: { +silk: 2 +} }, { platform: "ie", regex: /MSIE (\d+)/ @@ -1668,11 +1699,14 @@ regex: /Android;.*Firefox\/(\d+)/ }, { platform: "firefox", regex: /Firefox\/(\d+)/ +}, { +platform: "blackberry", +regex: /BB1\d;.*Version\/(\d+\.\d+)/ } ]; for (var r = 0, i, s, o; i = n[r]; r++) { s = i.regex.exec(e); if (s) { -i.forceVersion ? o = i.forceVersion : o = Number(s[1]), t[i.platform] = o; +i.forceVersion ? o = i.forceVersion : o = Number(s[1]), t[i.platform] = o, i.extra && enyo.mixin(t, i.extra); break; } } @@ -1771,7 +1805,7 @@ break; n = n.parentNode; } } catch (r) { -console.log(r, n); +enyo.log(r, n); } return t; }, @@ -1867,7 +1901,7 @@ type: e }; for (var r = 0, i; i = this.eventProps[r]; r++) n[i] = t[i]; n.srcEvent = n.srcEvent || t, n.preventDefault = this.preventDefault, n.disablePrevention = this.disablePrevention; -if (enyo.platform.ie) { +if (enyo.platform.ie < 10) { enyo.platform.ie == 8 && n.target && (n.pageX = n.clientX + n.target.scrollLeft, n.pageY = n.clientY + n.target.scrollTop); var s = window.event && window.event.button; n.which = s & 1 ? 1 : s & 2 ? 2 : s & 4 ? 3 : 0; @@ -2152,7 +2186,7 @@ return r; connect: function() { enyo.forEach([ "ontouchstart", "ontouchmove", "ontouchend", "ongesturestart", "ongesturechange", "ongestureend" ], function(e) { document[e] = enyo.dispatch; -}), enyo.platform.androidChrome <= 18 ? this.findTarget = function(e) { +}), enyo.platform.androidChrome <= 18 || enyo.platform.silk === 2 ? this.findTarget = function(e) { return document.elementFromPoint(e.screenX, e.screenY); } : document.elementFromPoint || (this.findTarget = function(e) { return this.findTargetTraverse(null, e.clientX, e.clientY); @@ -2165,34 +2199,61 @@ n.connect(); // msevents.js (function() { +var e = enyo.gesture; if (window.navigator.msPointerEnabled) { -var e = [ "MSPointerDown", "MSPointerUp", "MSPointerMove", "MSPointerOver", "MSPointerOut", "MSPointerCancel", "MSGestureTap", "MSGestureDoubleTap", "MSGestureHold", "MSGestureStart", "MSGestureChange", "MSGestureEnd" ]; -enyo.forEach(e, function(e) { +var t = [ "MSPointerDown", "MSPointerUp", "MSPointerMove", "MSPointerOver", "MSPointerOut", "MSPointerCancel", "MSGestureTap", "MSGestureDoubleTap", "MSGestureHold", "MSGestureStart", "MSGestureChange", "MSGestureEnd" ]; +enyo.forEach(t, function(e) { enyo.dispatcher.listen(document, e); }), enyo.dispatcher.features.push(function(e) { -n[e.type] && n[e.type](e); +s[e.type] && e.isPrimary && s[e.type](e); +}), enyo.gesture.events = {}; +} +var n = function(t, n) { +var r = enyo.clone(n); +r = enyo.mixin(r, { +type: t, +srcEvent: n, +preventDefault: e.preventDefault, +disablePrevention: e.disablePrevention }); -} -var t = function(e, t) { -var n = enyo.clone(t); -return enyo.mixin(n, { -pageX: t.translationX || 0, -pageY: t.translationY || 0, -rotation: t.rotation * (180 / Math.PI) || 0, -type: e, -srcEvent: t, -preventDefault: enyo.gesture.preventDefault, -disablePrevention: enyo.gesture.disablePrevention +}, r = function(t, n) { +var r = enyo.clone(n); +return enyo.mixin(r, { +pageX: n.translationX || 0, +pageY: n.translationY || 0, +rotation: n.rotation * (180 / Math.PI) || 0, +type: t, +srcEvent: n, +preventDefault: e.preventDefault, +disablePrevention: e.disablePrevention }); -}, n = { -MSGestureStart: function(e) { -enyo.dispatch(t("gesturestart", e)); +}, i = function(e) { +var t = enyo.clone(e); +return t.srcEvent = e, t.target = document.elementFromPoint(t.clientX, t.clientY), t.which = 1, t; +}, s = { +MSPointerDown: function(t) { +var n = i(t); +e.down(n); +}, +MSPointerUp: function(t) { +var n = i(t); +e.up(n); +}, +MSPointerMove: function(t) { +var n = i(t); +e.move(n); }, -MSGestureChange: function(e) { -enyo.dispatch(t("gesturechange", e)); +MSPointerCancel: function(t) { +var n = i(t); +e.up(n); }, -MSGestureEnd: function(e) { -enyo.dispatch(t("gestureend", e)); +MSPointerOver: function(t) { +var n = i(t); +e.over(n); +}, +MSPointerOut: function(t) { +var n = i(t); +e.out(n); } }; })(); @@ -2954,9 +3015,13 @@ version: 5 }, { os: "webos", version: 1e9 +}, { +os: "blackberry", +version: 1e9 } ], hasTouchScrolling: function() { for (var e = 0, t, n; t = this.osInfo[e]; e++) if (enyo.platform[t.os]) return !0; +if (enyo.platform.ie >= 10 && enyo.platform.touch) return !0; }, hasNativeScrolling: function() { for (var e = 0, t, n; t = this.osInfo[e]; e++) if (enyo.platform[t.os] < t.version) return !1; @@ -3444,6 +3509,9 @@ enyo.kind({ name: "enyo.Button", kind: enyo.ToolDecorator, tag: "button", +attributes: { +type: "button" +}, published: { disabled: !1 }, @@ -3630,7 +3698,7 @@ teardownChildren: function() {} enyo.kind({ name: "enyo.Popup", -classes: "enyo-popup", +classes: "enyo-popup enyo-no-touch-action", published: { modal: !1, autoDismiss: !0, |