Difference between revisions 8046 and 8051 on ukwikivoyage

// для експериментальної сторінки створення маршрутів
$( document ).ready(function() {
    //створення форм після завантаження
  if(mw.config.get('wgPageName') == 'Користувач:RLuts/testforms') {
     $("#expjsforms").append('<input id="commonscat" value="Категорія Вікісховища"/>                     <input id="newform" type=button value="Додати населений пункт" />');
  }
});
 
(contracted; show full)
    elem.live('blur', text, function(e) {
        if($(this).val() === '') {
            $(this).val(e.data);
            $(this).css('color', '#ccc');
        }
    });
}


///////////////////////////////////////////////////////////////////

	// General suggestions functionality for all search boxes
	$( '#commonscat' )
		.suggestions( {
			fetch: function( query ) {
				var $this = $(this);
				var request = $.ajax( {
					url: wgScriptPath + '/api.php',
					data: {
						'action': 'opensearch',
						'search': query,
						'namespace': 0,
						'suggest': ''
					},
					dataType: 'json',
					success: function( data ) {
						if ( data && 1 in data ) {
							$this.suggestions( 'suggestions', data[1] );
						}
					}
				});
				$(this).data( 'request', request );
			},
			cancel: function () {
				var request = $(this).data( 'request' );
				// If the delay setting has caused the fetch to have not even happend yet, the request object will
				// have never been set
				if ( request && typeof request.abort == 'function' ) {
					request.abort();
					$(this).removeData( 'request' );
				}
			},
			result: {
				select: function( $input ) {
					$input.closest( 'form' ).submit();
				}
			},
			delay: 120,
			positionFromLeft: $( 'body' ).is( '.rtl' ),
			highlightInput: true
		} )
		.bind( 'paste cut', function( e ) {
			// make sure paste and cut events from the mouse trigger the keypress handler and cause the suggestions to update
			$( this ).trigger( 'keypress' );
		} );