User talk:AsqueellaFrom MozillaZine Knowledge Base
[edit] The new "Knowledge Base changes" articleHi! As a regular contributor to the Knowledge Base, I thought you'd like to know about a new page I've created: Knowledge Base changes. The purpose of the page is explained in that article, but in summary I think it would be a good central place for existing editors to discuss potentially controversial changes to the KB, and for new editors to propose changes before implementing them. Any feedback will be gratefully received on the talk page for that article, or on my user talk page! Best wishes, --Mozcerize 13:03, 2 January 2006 (UTC) [edit] Me and my crazy moving stuff to devmoI've made a template so that people will have a chance to say "hey, there's stuff missing" before I replace the development articles here. See JavaScript coding guidelines and Localize extension descriptions--Np 22:54, 31 August 2006 (UTC)
[edit] nsIWindowMediatorYou're the sole author of nsIWindowMediator. Do I have your permission to move its contents to MDC? (You can do it yourself, if you like).--Np 19:59, 18 September 2006 (UTC)
[edit] Inserting text at cursorWhat's the functional difference between the code posted there and this (which I use in Stylish): function insertCodeAtCaret(snippet) {
var selectionEnd = codeElement.selectionStart + snippet.length;
codeElement.value = codeElement.value.substring(0, codeElement.selectionStart) + snippet + codeElement.value.substring(codeElement.selectionEnd, codeElement.value.length);
codeElement.focus();
codeElement.setSelectionRange(selectionEnd, selectionEnd);
}
--Np 17:58, 24 May 2007 (UTC)
|
|