mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
Package.describe({
|
|
summary: "Reload the page while preserving application state.",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['underscore', 'logging', 'json'], 'client');
|
|
api.add_files('reload.js', 'client');
|
|
});
|