GithubHelp home page GithubHelp logo

Comments (3)

benjamincanac avatar benjamincanac commented on July 23, 2024

PR #25

from angular-bootstrap-lightbox.

compact avatar compact commented on July 23, 2024

I was about to release this change, but now I think there is a good reason to have ui.bootstrap as the main module containing all the submodules you need. Here is why.

When I use the Create a Build feature and include only Modal, the generated scripts start with the following.

Build without templates:

angular.module("ui.bootstrap", ["ui.bootstrap.modal"]);
angular.module('ui.bootstrap.modal', [])

Build with templates:

angular.module("ui.bootstrap", ["ui.bootstrap.tpls","ui.bootstrap.modal"]);
angular.module("ui.bootstrap.tpls", ["template/modal/backdrop.html","template/modal/window.html"]);
angular.module('ui.bootstrap.modal', [])
  • If the bootstrapLightbox module depends on both ui.bootstrap.modal and ui.bootstrap.tpls, it won't work for apps that don't use ui.bootstrap.tpls, when a person creates their own templates.
  • If the bootstrapLightbox module depends only on ui.bootstrap.modal, it won't work for apps that need ui.bootstrap.tpls and don't depend on it or ui.bootstrap explicitly. There would be errors that the templates template/modal/backdrop.html and template/modal/window.html can't be found.
  • If the bootstrapLightbox module depends on neither, then it won't work for apps that depend only on bootstrapLightbox and not ui.bootstrap*. There would be an error that the $modal provider does not exist.

from angular-bootstrap-lightbox.

freezy avatar freezy commented on July 23, 2024

I'm importing component per component from UI Bootstrap and lazy-load them when needed, so there's no ui.bootstrap module and angular-bootstrap-lightbox crashes. I've solved it by defining a dummy module before loading it:

angular.module('ui.bootstrap', []);

It's a bit awkward but it works. @compact your statements above are correct but it's still a bit weird that you would limit the way of packaging the lib in favor of telling users to include UI Bootstrap (it's in the name of the module, duh).

from angular-bootstrap-lightbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.