mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 14:01:53 +02:00
32 lines
542 B
JavaScript
32 lines
542 B
JavaScript
/*global requirejs: false*/
|
|
|
|
/*
|
|
// bower components
|
|
requirejs.config({
|
|
baseUrl: '../../bower_components'
|
|
});
|
|
|
|
requirejs( [ '../../js/packery' ], function( Packery ) {
|
|
|
|
new Packery( document.querySelector('#basic') );
|
|
|
|
});
|
|
// */
|
|
|
|
/*
|
|
// packery.pkgd.js
|
|
requirejs( [
|
|
'./../dist/packery.pkgd.js',
|
|
'require'
|
|
], function( pkgd, require ) {
|
|
require( ['packery/js/packery'], function ( Packery ) {
|
|
new Packery('#basic');
|
|
});
|
|
});
|
|
// */
|
|
|
|
requirejs( [
|
|
'../../dist/packery.pkgd.js'
|
|
], function( Packery ) {
|
|
new Packery('#basic');
|
|
});
|