Giter Site home page Giter Site logo

angular-load's Introduction

angular-load

Dynamically load scripts and CSS stylesheets in your Angular.JS app.

Copyright (C) 2014, 2015, Uri Shaked [email protected]

Build Status Coverage Status

Installation

You can choose your preferred method of installation:

  • Through bower: bower install angular-load --save
  • Through npm: npm install angular-load --save
  • Download from github: angular-load.js

Usage

Include angular-load.js in your application.

<script src="bower_components/angular-load/dist/angular-load.min.js"></script>

Add the module angularLoad as a dependency to your app module:

var myapp = angular.module('myapp', ['angularLoad']);

You can also use ES6 or CommonJS

import angularLoad from 'angular-load';
// or
var angularLoad = require('angular-load');

var myapp = angular.module('myapp', [angularLoad]);

angularLoad service directive

The angularLoad service provides three methods: loadScript(), loadCSS() and unloadCSS().

Call the loadScript() and loadCSS() methods to load a script or a CSS stylesheet asynchronously into the current page. Both methods return a promise that will be resolved once the resource (script or stylesheet) has been loaded. In case of an error (e.g. HTTP 404) the promise will be rejected.

Call the unloadCSS() method to unload a CSS stylesheet from the current page. This method return boolean value, specifying whether the given stylesheet URL could be located in the page and has been unloaded. In case of trying to remove non-existent resource the function will return false

Usage example:

angularLoad.loadScript('https://mysite.com/someplugin.js').then(function() {
	// Script loaded succesfully.
	// We can now start using the functions from someplugin.js
}).catch(function() {
    // There was some error loading the script. Meh
});

Collaborators

Uri Shaked [email protected], Colm Seale [email protected]

License

Released under the terms of MIT License:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

angular-load's People

Contributors

attrash-islam avatar benmarch avatar cseale avatar davidchin avatar dougmoscrop avatar francisrath avatar martinnuc avatar paolodm avatar realityking avatar urish avatar zlalanne avatar

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.