Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bigwheel

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bigwheel - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

8

package.json
{
"name": "bigwheel",
"version": "1.0.0",
"version": "1.1.0",
"description": "bigwheel is an mvc framework that focuses on animation",

@@ -25,5 +25,5 @@ "main": "index.js",

"dependencies": {
"bw-router": "git://github.com/MikkoH/bw-router",
"bw-viewmediator": "git://github.com/MikkoH/bw-viewmediator",
"bw-vm": "git://github.com/MikkoH/bw-vm",
"bw-router": "^1.0.1",
"bw-viewmediator": "^1.1.0",
"bw-vm": "^1.2.0",
"dom-event": "git://github.com/mikkoh/dom-event"

@@ -30,0 +30,0 @@ },

@@ -1,1 +0,3 @@

var framework = require( './framework' );
var framework = require( './framework' );
framework.init();

@@ -10,3 +10,3 @@ module.exports = preloader;

init: function( onComplete ) {
init: function( req, onComplete ) {

@@ -19,3 +19,3 @@ console.log( 'started simulating preload' );

aniIn: function( onComplete ) {
aniIn: function( req, onComplete ) {

@@ -26,3 +26,3 @@ console.log( 'preloader ani in' );

aniOut: function( onComplete ) {
aniOut: function( req, onComplete ) {

@@ -29,0 +29,0 @@ console.log( 'preloader ani out' );

@@ -5,9 +5,6 @@ module.exports = function( colour, toRoute ) {

init: function( data, onComplete ) {
init: function( req, onComplete ) {
if( !onComplete && typeof data == 'function' )
onComplete = data;
console.log( 'init', name );
console.log( data );
console.log( req );

@@ -19,3 +16,3 @@ var el = this.el = document.createElement( 'div' );

el.style.display = 'none';
el.innerHTML = data.route;
el.innerHTML = req.route;
document.body.appendChild( el );

@@ -26,3 +23,3 @@

require( './framework' ).go( toRoute );
}
};

@@ -39,3 +36,3 @@ onComplete();

aniIn: function( onComplete ) {
aniIn: function( req, onComplete ) {

@@ -48,3 +45,3 @@ console.log( 'aniIn', name );

aniOut: function( onComplete ) {
aniOut: function( req, onComplete ) {

@@ -56,3 +53,3 @@ console.log( 'aniOut', name );

destroy: function() {
destroy: function( req, onComplete ) {

@@ -63,2 +60,2 @@ console.log( 'destroy', name );

};
}
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc