remove padding in prop modal
- caused a vertical scrollbar - now constructed like the share modal (customModals inside tabs)
This commit is contained in:
@@ -737,12 +737,22 @@ define([
|
|||||||
UIElements.getProperties = function (common, data, cb) {
|
UIElements.getProperties = function (common, data, cb) {
|
||||||
var c1;
|
var c1;
|
||||||
var c2;
|
var c2;
|
||||||
|
var button = [{
|
||||||
|
className: 'primary',
|
||||||
|
name: Messages.okButton,
|
||||||
|
onClick: function () {},
|
||||||
|
keys: [13]
|
||||||
|
}];
|
||||||
NThen(function (waitFor) {
|
NThen(function (waitFor) {
|
||||||
getPadProperties(common, data, waitFor(function (e, c) {
|
getPadProperties(common, data, waitFor(function (e, c) {
|
||||||
c1 = c[0];
|
c1 = UI.dialog.customModal(c[0], {
|
||||||
|
buttons: button
|
||||||
|
});
|
||||||
}));
|
}));
|
||||||
getRightsProperties(common, data, waitFor(function (e, c) {
|
getRightsProperties(common, data, waitFor(function (e, c) {
|
||||||
c2 = c[0];
|
c2 = UI.dialog.customModal(c[0], {
|
||||||
|
buttons: button
|
||||||
|
});
|
||||||
}));
|
}));
|
||||||
}).nThen(function () {
|
}).nThen(function () {
|
||||||
var tabs = UI.dialog.tabs([{
|
var tabs = UI.dialog.tabs([{
|
||||||
@@ -1767,7 +1777,7 @@ define([
|
|||||||
if (e) { return void console.error(e); }
|
if (e) { return void console.error(e); }
|
||||||
UIElements.getProperties(common, data, function (e, $prop) {
|
UIElements.getProperties(common, data, function (e, $prop) {
|
||||||
if (e) { return void console.error(e); }
|
if (e) { return void console.error(e); }
|
||||||
UI.alert($prop[0], undefined, true);
|
UI.openCustomModal($prop[0]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -4187,16 +4187,7 @@ define([
|
|||||||
}
|
}
|
||||||
getProperties(el, function (e, $prop) {
|
getProperties(el, function (e, $prop) {
|
||||||
if (e) { return void logError(e); }
|
if (e) { return void logError(e); }
|
||||||
var modal = UI.dialog.customModal($prop[0], {
|
UI.openCustomModal($prop[0]);
|
||||||
buttons: [{
|
|
||||||
className: 'secondary',
|
|
||||||
name: Messages.okButton,
|
|
||||||
onClick: function () {},
|
|
||||||
keys: [13]
|
|
||||||
}],
|
|
||||||
onClose: config.onClose,
|
|
||||||
});
|
|
||||||
UI.openCustomModal(modal);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else if ($this.hasClass("cp-app-drive-context-hashtag")) {
|
else if ($this.hasClass("cp-app-drive-context-hashtag")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user