Coder Social home page Coder Social logo

angular-get-dependency-bookmarklet's Introduction

Angular Get Dependency Bookmarklet

A bookmarkable function to get (and assign as a global) an Angular dependency.

Installation

Copy and paste the following into a new bookmark, and save it to your bookmarks bar.

javascript: (function() {var a = document.createElement("script");a.src = "https://rawgit.com/DSchau/angular-get-dependency-bookmarklet/master/angular-get-dependency-bookmarklet.js";a.onload=function(){window.getDependency()};document.head.appendChild(a)})();

Usage

  • Click the bookmarklet (or copy and paste the code as a Chrome snippet)
  • body is used as the source, but if $0 (e.g. a currently selected element) is available, that is used instead
  • Type your dependency (e.g. $rootScope, $state, etc.)
  • Note that $scope is not available
  • Note that the dependency is now available as a global
  • ...
  • Profit

Advanced Usage

Aliasing the global

dependency [space] alias, e.g.

$rootScope rs

The global rs will point to $rootScope, e.g. rs.$on(...)

Calling a function in the prompt

var timeoutLength = 5000;
var callback = function() {
  console.log('I will be called every ' + timeoutLength / 1000 + ' seconds');
};

Call the bookmarklet with $interval(callback, timeoutLength) to call the callback every 5 seconds.

Alternately, consider using $rootScope.$apply(optionalFn) to sync changes made locally (in scope) to the view!

angular-get-dependency-bookmarklet's People

Contributors

dschau avatar

Watchers

 avatar  avatar  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.