profoundjs 6.6.0 → 7.0.0
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/htdocs/iscroll/iscroll.js +3 -0
- package/htdocs/profoundui/proddata/js/designer.js +3586 -3541
- package/htdocs/profoundui/proddata/js/runtime.js +1381 -1377
- package/index.js +2 -4
- package/package.json +4 -5
- package/profound.jse +1 -1
- package/setup/completeInstall.js +31 -16
- package/setup/gen_key.js +6 -0
- package/setup/get_pjscall_key.js +6 -0
- package/setup/install_info.json +7 -0
- package/setup/modules/oauth2sample/.noderun/ide_settings.json +9 -0
- package/setup/modules/oauth2sample/.noderun/settings.json +14 -0
- package/setup/modules/oauth2sample/README.md +251 -0
- package/setup/modules/oauth2sample/authpage.js +178 -0
- package/setup/modules/oauth2sample/mywebservices.api.json +47 -0
- package/setup/modules/oauth2sample/oautils.js +257 -0
- package/setup/modules/oauth2sample/settings.js +79 -0
- package/setup/modules/oauth2sample/useful-app.json +470 -0
- package/setup/pjsdist.savf +0 -0
- package/setup/setup.js +58 -31
- package/setup/encrypt_client_file.js +0 -4
|
@@ -456,6 +456,9 @@ IScroll.prototype = {
|
|
|
456
456
|
},
|
|
457
457
|
|
|
458
458
|
_start: function (e) {
|
|
459
|
+
|
|
460
|
+
if (e.target && e.target.classList && e.target.classList.contains('combo-arrow')) return;
|
|
461
|
+
|
|
459
462
|
// React to left mouse button only
|
|
460
463
|
if ( utils.eventType[e.type] != 1 ) {
|
|
461
464
|
// for button property
|