Force users to click OK in the language/timezone popup
This commit is contained in:
parent
7f64edafff
commit
9a03b1b50a
3 changed files with 8 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
||||||
<?php echo $this->element->getElement('setup_timezone')->render(); ?>
|
<?php echo $this->element->getElement('setup_timezone')->render(); ?>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p style="margin-bottom: 0px; text-align: center;">You can change these later in your preferences and user settings.</p>
|
<p style="margin-bottom: 0px; text-align: center;"><?php echo _("You can change these later in your preferences and user settings.");?></p>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3960,3 +3960,6 @@ li .ui-state-hover {
|
||||||
#whatsnew li {
|
#whatsnew li {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* jQuery dialog */
|
||||||
|
.no-close .ui-dialog-titlebar-close {display: none }
|
|
@ -7,8 +7,11 @@ $(document).ready(function() {
|
||||||
width: 500,
|
width: 500,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
modal: true,
|
modal: true,
|
||||||
|
closeOnEscape: false,
|
||||||
position:['center','center'],
|
position:['center','center'],
|
||||||
|
dialogClass: 'no-close',
|
||||||
buttons: [
|
buttons: [
|
||||||
|
/* Testing removing the Not Now button for higher engagement
|
||||||
{
|
{
|
||||||
id: "setup-later",
|
id: "setup-later",
|
||||||
text: $.i18n._("Not Now"),
|
text: $.i18n._("Not Now"),
|
||||||
|
@ -16,7 +19,7 @@ $(document).ready(function() {
|
||||||
click: function() {
|
click: function() {
|
||||||
$(this).dialog("close");
|
$(this).dialog("close");
|
||||||
}
|
}
|
||||||
},
|
},*/
|
||||||
{
|
{
|
||||||
id: "help_airtime",
|
id: "help_airtime",
|
||||||
text: $.i18n._("OK"),
|
text: $.i18n._("OK"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue