mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 16:17:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			504 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			504 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('header')
 | |
| 
 | |
| @section('head')
 | |
| @parent
 | |
| 
 | |
|     @include('money_script')
 | |
| 
 | |
|     <link href='https://fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet' type='text/css'>
 | |
| 
 | |
|     <style>
 | |
|     .checkbox-inline input[type="checkbox"] {
 | |
|         margin-left:-20px !important;
 | |
|     }
 | |
|     .iframe_url {
 | |
|         display: none;
 | |
|     }
 | |
|     </style>
 | |
| 
 | |
| @stop
 | |
| 
 | |
| @section('content')
 | |
| @parent
 | |
| 
 | |
| {!! Former::open_for_files()
 | |
|         ->rules([
 | |
|             'iframe_url' => 'url',
 | |
|         ])
 | |
|         ->addClass('warn-on-exit') !!}
 | |
| 
 | |
| {!! Former::populate($account) !!}
 | |
| {!! Former::populateField('enable_client_portal', intval($account->enable_client_portal)) !!}
 | |
| {!! Former::populateField('enable_client_portal_dashboard', intval($account->enable_client_portal_dashboard)) !!}
 | |
| {!! Former::populateField('enable_portal_password', intval($enable_portal_password)) !!}
 | |
| {!! Former::populateField('send_portal_password', intval($send_portal_password)) !!}
 | |
| {!! Former::populateField('enable_buy_now_buttons', intval($account->enable_buy_now_buttons)) !!}
 | |
| {!! Former::populateField('show_accept_invoice_terms', intval($account->show_accept_invoice_terms)) !!}
 | |
| {!! Former::populateField('show_accept_quote_terms', intval($account->show_accept_quote_terms)) !!}
 | |
| {!! Former::populateField('require_invoice_signature', intval($account->require_invoice_signature)) !!}
 | |
| {!! Former::populateField('require_quote_signature', intval($account->require_quote_signature)) !!}
 | |
| 
 | |
| @include('accounts.nav', ['selected' => ACCOUNT_CLIENT_PORTAL, 'advanced' => true])
 | |
| 
 | |
| <div class="row">
 | |
|     <div class="col-md-12">
 | |
| 
 | |
|         <div class="panel panel-default">
 | |
|             <div class="panel-heading">
 | |
|                 <h3 class="panel-title">{!! trans('texts.settings') !!}</h3>
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
| 
 | |
|                 <div role="tabpanel">
 | |
|                     <ul class="nav nav-tabs" role="tablist" style="border: none">
 | |
|                         <li role="presentation" class="active">
 | |
|                             <a href="#link" aria-controls="link" role="tab" data-toggle="tab">{{ trans('texts.link') }}</a>
 | |
|                         </li>
 | |
|                         <li role="presentation">
 | |
|                             <a href="#navigation" aria-controls="navigation" role="tab" data-toggle="tab">{{ trans('texts.navigation') }}</a>
 | |
|                         </li>
 | |
|                         <li role="presentation">
 | |
|                             <a href="#custom_css" aria-controls="custom_css" role="tab" data-toggle="tab">{{ trans('texts.custom_css') }}</a>
 | |
|                         </li>
 | |
|                     </ul>
 | |
|                 </div>
 | |
| 
 | |
|                 <div class="tab-content">
 | |
|                     <div role="tabpanel" class="tab-pane active" id="link">
 | |
|                         <div class="panel-body">
 | |
| 
 | |
|                             @if (Utils::isNinja() && ! Utils::isReseller())
 | |
|                                 {!! Former::inline_radios('domain_id')
 | |
|                                         ->label(trans('texts.domain'))
 | |
|                                         ->radios([
 | |
|                                             'invoiceninja.com' => ['value' => \Domain::INVOICENINJA_COM, 'name' => 'domain_id'],
 | |
|                                             'invoice.services' => ['value' => \Domain::INVOICE_SERVICES, 'name' => 'domain_id'],
 | |
|                                         ])->check($account->domain_id)
 | |
|                                         ->help($account->iframe_url ? 'domain_help_website' : 'domain_help') !!}
 | |
|                             @endif
 | |
| 
 | |
|                             @if (Utils::isNinja())
 | |
| 
 | |
|                                 {!! Former::inline_radios('custom_invoice_link')
 | |
|                                         ->onchange('onCustomLinkChange()')
 | |
|                                         ->label(trans('texts.customize'))
 | |
|                                         ->radios([
 | |
|                                             trans('texts.subdomain') => ['value' => 'subdomain', 'name' => 'custom_link'],
 | |
|                                             trans('texts.website') => ['value' => 'website', 'name' => 'custom_link'],
 | |
|                                         ])->check($account->iframe_url ? 'website' : 'subdomain') !!}
 | |
|                                 {{ Former::setOption('capitalize_translations', false) }}
 | |
| 
 | |
|                                 {!! Former::text('subdomain')
 | |
|                                             ->placeholder(Utils::isNinja() ? 'app' : trans('texts.www'))
 | |
|                                             ->onchange('onSubdomainChange()')
 | |
|                                             ->addGroupClass('subdomain')
 | |
|                                             ->label(' ')
 | |
|                                             ->help(trans('texts.subdomain_help')) !!}
 | |
|                             @endif
 | |
| 
 | |
|                             {!! Former::text('iframe_url')
 | |
|                                         ->placeholder('https://www.example.com/invoice')
 | |
|                                         ->appendIcon('question-sign')
 | |
|                                         ->addGroupClass('iframe_url')
 | |
|                                         ->label(Utils::isNinja() ? ' ' : trans('texts.website'))
 | |
|                                         ->help(trans(Utils::isNinja() ? 'texts.subdomain_help' : 'texts.website_help')) !!}
 | |
| 
 | |
|                             {!! Former::plaintext('preview')
 | |
|                                         ->value($account->getSampleLink()) !!}
 | |
| 
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div role="tabpanel" class="tab-pane" id="navigation">
 | |
|                         <div class="panel-body">
 | |
| 
 | |
|                             {!! Former::checkbox('enable_client_portal')
 | |
|                                 ->text(trans('texts.enable'))
 | |
|                                 ->help(trans('texts.enable_client_portal_help'))
 | |
|                                 ->value(1) !!}
 | |
| 
 | |
| 
 | |
|                             {!! Former::checkbox('enable_client_portal_dashboard')
 | |
|                                 ->text(trans('texts.enable'))
 | |
|                                 ->help(trans('texts.enable_client_portal_dashboard_help'))
 | |
|                                 ->value(1) !!}
 | |
| 
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div role="tabpanel" class="tab-pane" id="custom_css">
 | |
|                         <div class="panel-body">
 | |
| 
 | |
|                             {!! Former::textarea('client_view_css')
 | |
|                                 ->label(trans('texts.custom_css'))
 | |
|                                 ->rows(10)
 | |
|                                 ->raw()
 | |
|                                 ->maxlength(60000)
 | |
|                                 ->style("min-width:100%;max-width:100%;font-family:'Roboto Mono', 'Lucida Console', Monaco, monospace;font-size:14px;'") !!}
 | |
| 
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div class="panel panel-default">
 | |
|             <div class="panel-heading">
 | |
|                 <h3 class="panel-title">{!! trans('texts.authorization') !!}</h3>
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
|                 <div role="tabpanel">
 | |
|                     <ul class="nav nav-tabs" role="tablist" style="border: none">
 | |
|                         <li role="presentation" class="active"><a href="#password" aria-controls="password" role="tab" data-toggle="tab">{{ trans('texts.password') }}</a></li>
 | |
|                         <li role="presentation"><a href="#checkbox" aria-controls="checkbox" role="tab" data-toggle="tab">{{ trans('texts.checkbox') }}</a></li>
 | |
|                         <li role="presentation"><a href="#signature" aria-controls="signature" role="tab" data-toggle="tab">{{ trans('texts.invoice_signature') }}</a></li>
 | |
|                     </ul>
 | |
|                 </div>
 | |
|                 <div class="tab-content">
 | |
|                     <div role="tabpanel" class="tab-pane active" id="password">
 | |
|                         <div class="panel-body">
 | |
|                           <div class="row">
 | |
|                             <div class="col-md-10 col-md-offset-1">
 | |
|                                 {!! Former::checkbox('enable_portal_password')
 | |
|                                     ->text(trans('texts.enable'))
 | |
|                                     ->help(trans('texts.enable_portal_password_help'))
 | |
|                                     ->label(trans('texts.enable_portal_password'))
 | |
|                                     ->value(1) !!}
 | |
|                             </div>
 | |
|                             <div class="col-md-10 col-md-offset-1">
 | |
|                                 {!! Former::checkbox('send_portal_password')
 | |
|                                     ->text(trans('texts.enable'))
 | |
|                                     ->help(trans('texts.send_portal_password_help'))
 | |
|                                     ->label(trans('texts.send_portal_password'))
 | |
|                                     ->value(1) !!}
 | |
|                             </div>
 | |
|                         </div>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div role="tabpanel" class="tab-pane" id="checkbox">
 | |
|                         <div class="panel-body">
 | |
|                           <div class="row">
 | |
|                             <div class="col-md-10 col-md-offset-1">
 | |
|                                 {!! Former::checkbox('show_accept_invoice_terms')
 | |
|                                     ->text(trans('texts.enable'))
 | |
|                                     ->help(trans('texts.show_accept_invoice_terms_help'))
 | |
|                                     ->label(trans('texts.show_accept_invoice_terms'))
 | |
|                                     ->value(1) !!}
 | |
|                             </div>
 | |
|                             <div class="col-md-10 col-md-offset-1">
 | |
|                                 {!! Former::checkbox('show_accept_quote_terms')
 | |
|                                     ->text(trans('texts.enable'))
 | |
|                                     ->help(trans('texts.show_accept_quote_terms_help'))
 | |
|                                     ->label(trans('texts.show_accept_quote_terms'))
 | |
|                                     ->value(1) !!}
 | |
|                             </div>
 | |
|                         </div>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div role="tabpanel" class="tab-pane" id="signature">
 | |
|                         <div class="panel-body">
 | |
|                           <div class="row">
 | |
|                             <div class="col-md-10 col-md-offset-1">
 | |
|                                 {!! Former::checkbox('require_invoice_signature')
 | |
|                                     ->text(trans('texts.enable'))
 | |
|                                     ->help(trans('texts.require_invoice_signature_help'))
 | |
|                                     ->label(trans('texts.require_invoice_signature'))
 | |
|                                     ->value(1) !!}
 | |
|                             </div>
 | |
|                             <div class="col-md-10 col-md-offset-1">
 | |
|                                 {!! Former::checkbox('require_quote_signature')
 | |
|                                     ->text(trans('texts.enable'))
 | |
|                                     ->help(trans('texts.require_quote_signature_help'))
 | |
|                                     ->label(trans('texts.require_quote_signature'))
 | |
|                                     ->value(1) !!}
 | |
|                             </div>
 | |
|                         </div>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div class="panel panel-default" id="buy_now">
 | |
|             <div class="panel-heading">
 | |
|                 <h3 class="panel-title">{!! trans('texts.buy_now_buttons') !!}</h3>
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
|                 <div class="col-md-10 col-md-offset-1">
 | |
| 
 | |
|                     @if (count($gateway_types) && count($products))
 | |
| 
 | |
|                         {!! Former::checkbox('enable_buy_now_buttons')
 | |
|                             ->text(trans('texts.enable'))
 | |
|                             ->label(' ')
 | |
|                             ->help(trans('texts.enable_buy_now_buttons_help'))
 | |
|                             ->value(1) !!}
 | |
| 
 | |
|                         @if ($account->enable_buy_now_buttons)
 | |
|                             {!! Former::select('product')
 | |
|                                 ->onchange('updateBuyNowButtons()')
 | |
|                                 ->addOption('', '')
 | |
|                                 ->inlineHelp('buy_now_buttons_warning')
 | |
|                                 ->addGroupClass('product-select') !!}
 | |
| 
 | |
|                             @if (count($account->present()->customTextFields))
 | |
|                                 {!! Former::inline_checkboxes('custom_fields')
 | |
|                                         ->onchange('updateBuyNowButtons()')
 | |
|                                         ->checkboxes($account->present()->customTextFields) !!}
 | |
|                             @endif
 | |
| 
 | |
|                             {!! Former::inline_radios('landing_page')
 | |
|                                     ->onchange('showPaymentTypes();updateBuyNowButtons();')
 | |
|                                     ->radios([
 | |
|                                         trans('texts.invoice') => ['value' => 'invoice', 'name' => 'landing_page_type'],
 | |
|                                         trans('texts.payment') => ['value' => 'payment', 'name' => 'landing_page_type'],
 | |
|                                     ])->check('invoice') !!}
 | |
| 
 | |
|                             <div id="paymentTypesDiv" style="display:none">
 | |
|                                 {!! Former::select('payment_type')
 | |
|                                     ->onchange('updateBuyNowButtons()')
 | |
|                                     ->options($gateway_types) !!}
 | |
|                             </div>
 | |
| 
 | |
|                             {!! Former::text('redirect_url')
 | |
|                                     ->onchange('updateBuyNowButtons()')
 | |
|                                     ->placeholder('https://www.example.com')
 | |
|                                     ->help('redirect_url_help') !!}
 | |
| 
 | |
| 
 | |
|                             {!! Former::checkbox('is_recurring')
 | |
|                                 ->text('enable')
 | |
|                                 ->label('recurring')
 | |
|                                 ->onchange('showRecurring();updateBuyNowButtons();')
 | |
|                                 ->value(1) !!}
 | |
| 
 | |
|                             <div id="recurringDiv" style="display:none">
 | |
| 
 | |
|                                 {!! Former::select('frequency_id')
 | |
|                                         ->options(\App\Models\Frequency::selectOptions())
 | |
|                                         ->onchange('updateBuyNowButtons()')
 | |
|                                         ->value(FREQUENCY_MONTHLY) !!}
 | |
| 
 | |
|                                 {!! Former::select('auto_bill')
 | |
|                                         ->onchange('updateBuyNowButtons()')
 | |
|                                         ->options([
 | |
|                                             AUTO_BILL_OFF => trans('texts.off'),
 | |
|                                             AUTO_BILL_OPT_IN => trans('texts.opt_in'),
 | |
|                                             AUTO_BILL_OPT_OUT => trans('texts.opt_out'),
 | |
|                                             AUTO_BILL_ALWAYS => trans('texts.always'),
 | |
|                                         ]) !!}
 | |
|                             </div>
 | |
| 
 | |
|                             <p> </p>
 | |
| 
 | |
|                             <div role="tabpanel">
 | |
|                                 <ul class="nav nav-tabs" role="tablist" style="border: none">
 | |
|                                     <li role="presentation" class="active">
 | |
|                                         <a href="#buy_now_link" aria-controls="buy_now_link" role="tab" data-toggle="tab">{{ trans('texts.link') }}</a>
 | |
|                                     </li>
 | |
|                                     <li role="presentation">
 | |
|                                         <a href="#form" aria-controls="form" role="tab" data-toggle="tab">{{ trans('texts.form') }}</a>
 | |
|                                     </li>
 | |
|                                 </ul>
 | |
|                             </div>
 | |
|                             <div class="tab-content">
 | |
|                                 <div role="tabpanel" class="tab-pane active" id="buy_now_link">
 | |
|                                     <textarea id="linkTextarea" class="form-control" rows="4" readonly></textarea>
 | |
|                                 </div>
 | |
|                                 <div role="tabpanel" class="tab-pane" id="form">
 | |
|                                     <textarea id="formTextarea" class="form-control" rows="4" readonly></textarea>
 | |
|                                 </div>
 | |
|                             </div>
 | |
| 
 | |
|                         @endif
 | |
|                          
 | |
|                     @else
 | |
| 
 | |
|                         <center style="font-size:16px;color:#888888;">
 | |
|                             {{ trans('texts.buy_now_buttons_disabled') }}
 | |
|                         </center>
 | |
| 
 | |
|                     @endif
 | |
| 
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| 
 | |
| @if (Auth::user()->isPro())
 | |
|     <center>
 | |
|     	{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
 | |
|     </center>
 | |
| @endif
 | |
| 
 | |
| {!! Former::close() !!}
 | |
| 
 | |
| 
 | |
| <div class="modal fade" id="iframeHelpModal" tabindex="-1" role="dialog" aria-labelledby="iframeHelpModalLabel" aria-hidden="true">
 | |
|     <div class="modal-dialog" style="min-width:150px">
 | |
|         <div class="modal-content">
 | |
|             <div class="modal-header">
 | |
|                 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | |
|                 <h4 class="modal-title" id="iframeHelpModalLabel">{{ trans('texts.iframe_url') }}</h4>
 | |
|             </div>
 | |
| 
 | |
|             <div class="container" style="width: 100%; padding-bottom: 0px !important">
 | |
|             <div class="panel panel-default">
 | |
|             <div class="panel-body">
 | |
|                 <p>{{ trans('texts.iframe_url_help1') }}</p>
 | |
|                 <pre><center>
 | |
| <iframe id="invoiceIFrame" width="100%" height="1200" style="max-width:1000px"></iframe>
 | |
| <center>
 | |
| <script language="javascript">
 | |
| var iframe = document.getElementById('invoiceIFrame');
 | |
| iframe.src = '{{ rtrim(SITE_URL ,'/') }}/view/'
 | |
|              + window.location.search.substring(1, 33);
 | |
| </script></pre>
 | |
|                 <p>{{ trans('texts.iframe_url_help2') }}</p>
 | |
|                 <p><b>{{ trans('texts.iframe_url_help3') }}</b></p>
 | |
|                 </div>
 | |
|             </div>
 | |
|             </div>
 | |
| 
 | |
|             <div class="modal-footer">
 | |
|                 <button type="button" class="btn btn-primary" data-dismiss="modal">{{ trans('texts.close') }}</button>
 | |
|             </div>
 | |
| 
 | |
| 
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| 
 | |
| <script type="text/javascript">
 | |
| 
 | |
|     var products = {!! $products !!};
 | |
| 
 | |
|     $(function() {
 | |
|         var $productSelect = $('select#product');
 | |
|         for (var i=0; i<products.length; i++) {
 | |
|             var product = products[i];
 | |
| 
 | |
|             $productSelect.append(new Option(formatMoney(product.cost) + ' - ' + product.product_key, product.public_id));
 | |
|         }
 | |
|         $productSelect.combobox();
 | |
| 
 | |
|         fixCheckboxes();
 | |
|         updateBuyNowButtons();
 | |
|     })
 | |
| 
 | |
| 	$('#enable_portal_password').change(fixCheckboxes);
 | |
| 
 | |
| 	function fixCheckboxes() {
 | |
| 		var checked = $('#enable_portal_password').is(':checked');
 | |
| 		$('#send_portal_password').prop('disabled', !checked);
 | |
| 	}
 | |
| 
 | |
|     function showPaymentTypes() {
 | |
|         var val = $('input[name=landing_page_type]:checked').val()
 | |
|         if (val == '{{ ENTITY_PAYMENT }}') {
 | |
|             $('#paymentTypesDiv').fadeIn();
 | |
|         } else {
 | |
|             $('#paymentTypesDiv').fadeOut();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function showRecurring() {
 | |
|         var val = $('input[name=is_recurring]:checked').val()
 | |
|         if (val) {
 | |
|             $('#recurringDiv').fadeIn();
 | |
|         } else {
 | |
|             $('#recurringDiv').fadeOut();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function updateBuyNowButtons() {
 | |
|         var productId = $('#product').val();
 | |
|         var landingPage = $('input[name=landing_page_type]:checked').val()
 | |
|         var paymentType = (landingPage == 'payment') ? '/' + $('#payment_type').val() : '/';
 | |
|         var redirectUrl = $('#redirect_url').val();
 | |
|         var isRecurring = $('input[name=is_recurring]:checked').val()
 | |
|         var frequencyId = $('#frequency_id').val();
 | |
|         var autoBillId = $('#auto_bill').val();
 | |
| 
 | |
|         var form = '';
 | |
|         var link = '';
 | |
| 
 | |
|         if (productId) {
 | |
|             @if (Utils::isNinjaProd())
 | |
|                 var domain = '{{ $account->present()->clientPortalLink(true) }}';
 | |
|             @else
 | |
|                 var domain = '{{ url('/buy_now') }}';
 | |
|             @endif
 | |
|             var link = domain + paymentType +
 | |
|                 '?account_key={{ $account->account_key }}' +
 | |
|                 '&product_id=' + productId;
 | |
| 
 | |
|             var form = '<form action="' + link + '" method="post" target="_top">' + "\n";
 | |
| 
 | |
|             @foreach ($account->present()->customTextFields as $field => $val)
 | |
|                 if ($('input#{{ $val['name'] }}').is(':checked')) {
 | |
|                     form += '<input type="text" name="{{ $val['name'] }}" placeholder="{{ $field }}" required/>' + "\n";
 | |
|                     link += '&{{ $val['name'] }}=';
 | |
|                 }
 | |
|             @endforeach
 | |
| 
 | |
|             if (redirectUrl) {
 | |
|                 link += '&redirect_url=' + encodeURIComponent(redirectUrl);
 | |
|                 form += '<input type="hidden" name="redirect_url" value="' + redirectUrl + '"/>' + "\n";
 | |
|             }
 | |
| 
 | |
|             if (isRecurring) {
 | |
|                 link += "&is_recurring=true&frequency_id=" + frequencyId + "&auto_bill_id=" + autoBillId;
 | |
|                 form += '<input type="hidden" name="is_recurring" value="true"/>' + "\n"
 | |
|                         + '<input type="hidden" name="frequency_id" value="' + frequencyId + '"/>' + "\n"
 | |
|                         + '<input type="hidden" name="auto_bill_id" value="' + autoBillId + '"/>' + "\n";
 | |
|             }
 | |
| 
 | |
|             form += '<input type="submit" value="Buy Now" name="submit"/>' + "\n" + '</form>';
 | |
|         }
 | |
| 
 | |
|         $('#formTextarea').text(form);
 | |
|         $('#linkTextarea').text(link);
 | |
|     }
 | |
| 
 | |
| 
 | |
|     function onSubdomainChange() {
 | |
|         var input = $('#subdomain');
 | |
|         var val = input.val();
 | |
|         if (!val) return;
 | |
|         val = val.replace(/[^a-zA-Z0-9_\-]/g, '').toLowerCase().substring(0, {{ MAX_SUBDOMAIN_LENGTH }});
 | |
|         input.val(val);
 | |
|     }
 | |
| 
 | |
|     function onCustomLinkChange() {
 | |
|         var val = $('input[name=custom_link]:checked').val()
 | |
|         if (val == 'subdomain') {
 | |
|             $('.subdomain').show();
 | |
|             $('.iframe_url').hide();
 | |
|         } else {
 | |
|             $('.subdomain').hide();
 | |
|             $('.iframe_url').show();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     $('.iframe_url .input-group-addon').click(function() {
 | |
|         $('#iframeHelpModal').modal('show');
 | |
|     });
 | |
| 
 | |
|     $(function() {
 | |
|         onCustomLinkChange();
 | |
| 
 | |
|         $('#subdomain').change(function() {
 | |
|             $('#iframe_url').val('');
 | |
|         });
 | |
|         $('#iframe_url').change(function() {
 | |
|             $('#subdomain').val('');
 | |
|         });
 | |
|     });
 | |
| 
 | |
| 
 | |
| </script>
 | |
| 
 | |
| @stop
 |