mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-05 08:42:49 -08:00
There are still some whitespace and attribute ordering issues, but the result runs correctly.
10 lines
128 B
JavaScript
Executable file
10 lines
128 B
JavaScript
Executable file
/*
|
|
jquery.tw.js
|
|
addition of tw 'namespace'
|
|
*/
|
|
(function($) {
|
|
if(!$.tw) {
|
|
$.tw = {};
|
|
$.tw.extend = $.extend;
|
|
}
|
|
})(jQuery);
|