diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php
index 571d2b518a00..a6532a6eb9fd 100644
--- a/resources/lang/en/texts.php
+++ b/resources/lang/en/texts.php
@@ -1179,7 +1179,7 @@ $LANG = array(
'preview' => 'Preview',
'list_vendors' => 'List Vendors',
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
- 'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
+ 'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments, :link to see the full list of features.',
'return_to_app' => 'Return to app',
'update_font_cache' => 'Please force refresh the page to update the font cache.',
diff --git a/resources/views/accounts/customize_design.blade.php b/resources/views/accounts/customize_design.blade.php
index 9c9fff51121c..f4eb56a79a30 100644
--- a/resources/views/accounts/customize_design.blade.php
+++ b/resources/views/accounts/customize_design.blade.php
@@ -10,16 +10,16 @@
@foreach ($account->getFontFolders() as $font)
@endforeach
-
+
@stop
@@ -39,8 +39,8 @@
{!! DropdownButton::success(trans('texts.pay_now'))->withContents($paymentTypes)->large() !!}
@else
{{ trans('texts.pay_now') }}
- @endif
- @else
+ @endif
+ @else
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
@endif
@@ -67,7 +67,7 @@
@endif
-
+
@if ($account->hasFeature(FEATURE_DOCUMENTS) && $account->invoice_embed_documents)
@foreach ($invoice->documents as $document)
@if($document->isPDFEmbeddable())
@@ -107,16 +107,16 @@
doc.getDataUrl(function(pdfString) {
document.write(pdfString);
document.close();
-
+
if (window.hasOwnProperty('pjsc_meta')) {
window['pjsc_meta'].remainingTasks--;
}
});
- @else
+ @else
refreshPDF();
@endif
});
-
+
function onDownloadClick() {
var doc = generatePDF(invoice, invoice.invoice_design.javascript, true);
var fileName = invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice;