mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
11 lines
128 B
JavaScript
11 lines
128 B
JavaScript
|
/*
|
||
|
jquery.tw.js
|
||
|
addition of tw 'namespace'
|
||
|
*/
|
||
|
(function($) {
|
||
|
if(!$.tw) {
|
||
|
$.tw = {};
|
||
|
$.tw.extend = $.extend;
|
||
|
}
|
||
|
})(jQuery);
|