2020-05-19 11:43:42 +03:00

179 lines
5.0 KiB
JavaScript

/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "/";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {
var testTemplateUrl = __webpack_require__(1);
angular.module('testModule', [])
.directive('testDirective', function() {
return {
restrict: 'E',
templateUrl: testTemplateUrl
}
});
console.log(__webpack_require__(2));
console.log(__webpack_require__(3));
console.log(__webpack_require__(4));
console.log(__webpack_require__(5));
console.log(__webpack_require__(1));
console.log(__webpack_require__(6));
console.log(__webpack_require__(7));
console.log(__webpack_require__(8));
console.log(__webpack_require__(9));
console.log(__webpack_require__(10));
console.log(__webpack_require__(11));
console.log(__webpack_require__(12));
/***/ }),
/* 1 */
/***/ (function(module, exports) {
var path = 'test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 2 */
/***/ (function(module, exports) {
var path = '/Users/toby/dev/ngtemplate-loader/test/src/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 3 */
/***/ (function(module, exports) {
var path = '/Users/toby/dev/ngtemplate-loader/test/src/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 4 */
/***/ (function(module, exports) {
var path = '/Users/toby/dev/ngtemplate-loader/test/src/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('testModule').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 5 */
/***/ (function(module, exports) {
var path = 'test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 6 */
/***/ (function(module, exports) {
var path = 'test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 7 */
/***/ (function(module, exports) {
var path = 'test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 8 */
/***/ (function(module, exports) {
var path = '/prefix/Users/toby/dev/ngtemplate-loader/test/src/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 9 */
/***/ (function(module, exports) {
var path = '/prefix/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 10 */
/***/ (function(module, exports) {
var path = 'src/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('test').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 11 */
/***/ (function(module, exports) {
var path = '/Users/toby/dev/ngtemplate-loader/test/src/test.html';
var html = "<div>Hello World!</div>";
window.angular.module('src').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ }),
/* 12 */
/***/ (function(module, exports) {
var path = '\\prefix\\test.html';
var html = "<div>Hello World!</div>";
window.angular.module('ng').run(['$templateCache', function(c) { c.put(path, html) }]);
module.exports = path;
/***/ })
/******/ ]);