குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.

  • மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
  • கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
  • இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
  • ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
/*
    This scipt floats the editTools Templates below the screen
    @Author [[User:Neechalkaran]]
*/
    
    if(mw.config.values.wgCanonicalNamespace==="Page"){
    var cont = document.createElement('span');
    cont.innerHTML="<img alt=\"Wiki Codes\" width=\"25px\" src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Fairytale_button_add.svg/64px-Fairytale_button_add.svg.png\">";
    cont.id="float-symbol";
    var div = document.createElement('div');
    div.style ='position:fixed; left:5px; bottom:0px; background-color:#ffffff !important; display:block;';
    div.append(cont);
    div.append(document.getElementById('edittools_wikimarkup'));

    if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) != -1 ) {
    	$('body').append( div );
    	current_state = $.cookie('selected_toggle');//get user preferences
    	if(current_state==null){current_state="true";}//To set default view
        if(current_state==="true"){$("#edittools_wikimarkup").show();}
        else{$("#edittools_wikimarkup").hide();}
    }}
    
    	$("#float-symbol").click(function() { 
    		$("#edittools_wikimarkup").toggle();
    		$.cookie('selected_toggle',$("#edittools_wikimarkup").is(':visible'));//save user preferences
		});
"https://ta.wikisource.org/w/index.php?title=பயனர்:Neechalkaran/FloatingTemplates.js&oldid=986900" இலிருந்து மீள்விக்கப்பட்டது