New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

backbone.marionette

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backbone.marionette - npm Package Versions

1
8

1.8.5

Diff

Changelog

Source

v1.8.5 view commit logs

  • Fixes
    • Update the UMD build to be inline with the 2.x branch UMD implementation.
samccone
published 1.8.4 •

Changelog

Source

v1.8.4 view commit logs

  • General
    • Update bundled build to use the latest version of babysitter and wreqr.
samccone
published 1.8.3 •

Changelog

Source

v1.8.3 view commit logs

  • Fixes
    • Behaviors now have access to the views options and events during their initialize.
samccone
published 1.8.2 •

Changelog

Source

v1.8.2 view commit logs

  • Fixes
    • Behaviors now calls stopListening on close.
    • Behaviors now undelegate modelEvents and collectionEvents when the parent view calls undelegateEvents.
samccone
published 1.8.1 •

samccone
published 1.8.0 •

Changelog

Source

v1.8.0 view commit logs

  • General
    • Update Gruntfile.

    • The default task (grunt) now runs tests.

    • $ grunt dev watch for watching.

    • $ grunt build runs the tests and compiles.

    • Add better inline documentation for module implementation.

    • Add better inline behavior documentation.

    • Fixes

      • Behaviors now correctly lookup methods for modelEvents and collectionEvents.
      • The CollectionView now triggers close on its children in the correct order.
    • Features

      • Add onRoute to the appRouter.
        Marionette.AppRouter.extend({
          onRoute: function(route, params) {
          }
        })
      
      • Region.show now takes an option to prevent closing the previous view in the region. By default a region will automatically close the previous view, however you can prevent this behavior by passing {preventDestroy: true} in the options parameter.
      myRegion.show(view2, { preventDestroy: true })
      
      • Add a getRegion method to Layout. This is in line with the eventual goal of not attaching regions to the root layout object.

      • Behavior instances now extend from Backbone.Events, allowing you to use .listenTo and .on.

      • Allow Behaviors to have a functional hash lookup.

        Marionette.ItemView.extend({
          behaviors: function() {
            // “this” will refer to the view instance
            return : {
              BehaviorA: {}
            }
          }
        })
      
      • RegionManagers now calls stopListening on a regions on removal.
    • Refactors

      • Abstract underscore collection method mixin into a generic helper.
      • Use built in marionette extend for behaviors.
    • Tests

      • Add a whitespace linter to the text coverage. Trailing whitespace now causes travis.ci to fail.
      • Add test coverage for bindEntitiyEvents and unbindEntityEvents.
      • Test public API for the regionManager.
      • Improve view trigger tests for better control when testing.
samccone
published 1.7.4 •

Changelog

Source

v1.7.4 view commit logs

  • General

    • Update bower dependencies to take advantage of the fact that marionette repos follow semver.
  • Fixes

    • Behaviors events no longer collide with each other.
    • Revert stopListening call on stop for modules. While this was a "fix", the docs were quite vague leading to breaking changes for many people.
    • startWithParent is now respected when using a moduleClass property.
samccone
published 1.7.3 •

Changelog

Source

v1.7.3 view commit logs

  • Behaviors

    • Adds the ability to use @ui interpolation within the events hash on a behavior.
  • Fixes

    • Corrects broken view $el proxy in behaviors.
samccone
published 1.7.2 •

Changelog

Source

v1.7.2 view commit logs

  • Fixes
    • Binds behavior events to the behavior instance, as compared to the view.
samccone
published 1.7.1 •

Changelog

Source

v1.7.1 view commit logs

  • Fixes
    • Enables the use of string based behavior event methods.
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