Sha256: c444c83ce8ca23df162bf68a25bea740f5cd652901e83ffafc0184a6634e9fb9

Contents?: true

Size: 395 Bytes

Versions: 3

Compression:

Stored size: 395 Bytes

Contents

/* global angular, document */
//= require angular
//= require angular-animate/angular-animate

var peoplefinderApp = angular.module('peoplefinderApp', ['ngAnimate']);

peoplefinderApp.injectNewContainer = function(container) {
  angular.element(document).injector().invoke(function ($compile) {
    var scope = angular.element(container).scope();
    $compile(container)(scope);
  }, this);
};

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
peoplefinder-0.1.1 app/assets/javascripts/peoplefinder/peoplefinder_app.js
peoplefinder-0.1.0 app/assets/javascripts/peoplefinder/peoplefinder_app.js
peoplefinder-0.0.2 app/assets/javascripts/peoplefinder/peoplefinder_app.js