mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-16 08:01:53 +00:00
17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
// 装饰, 不是立刻就需要的功能
|
|
// 1. 历史记录
|
|
// todo
|
|
// 2. history
|
|
// 3. note info
|
|
// requirejs.config({
|
|
// paths: {
|
|
// 'history': 'public/js/dec/history',
|
|
// }
|
|
// });
|
|
|
|
// 异步加载
|
|
var requireWeb = require;
|
|
setTimeout(function () {
|
|
requireWeb(['public/js/dec/history']);
|
|
});
|