מדיה ויקי:BookmarkletsInit.js: הבדלים בין גרסאות בדף

מתוך חב"דפדיה, אנציקלופדיה חב"דית חופשית
קפיצה לניווט קפיצה לחיפוש
(יצירת דף עם התוכן "function create_bookmarklets() { console.log( 'hello' ); }; $( create_bookmarklets );")
 
אין תקציר עריכה
שורה 1: שורה 1:
function create_bookmarklets() {
( function () {
console.log( 'hello' );
'use strict';
};
 
createBookmarklets = function () {
$( create_bookmarklets );
console.log( 'closure' );
};
 
$( create_bookmarklets );
} )();

גרסה מ־17:15, 23 במרץ 2014

( function () {
	'use strict';

	createBookmarklets = function () {
		console.log( 'closure' );
	};

	$( create_bookmarklets );
} )();