blog menu page & blog article page
This commit is contained in:
52
node_modules/gulp-rev-all/test/fixtures/config1/script/app.js
generated
vendored
Normal file
52
node_modules/gulp-rev-all/test/fixtures/config1/script/app.js
generated
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
'use strict';
|
||||
|
||||
var layout = require('./layout.js');
|
||||
var short = require('./short');
|
||||
var shortDuplicate = require('./shortDuplicate');
|
||||
|
||||
var items = ['short'];
|
||||
var short = function() {
|
||||
|
||||
};
|
||||
|
||||
define(['app'], function (app) {
|
||||
|
||||
var directives = {};
|
||||
directives.gps = function () {
|
||||
return {
|
||||
restrict: "E",
|
||||
replace: true,
|
||||
templateUrl: 'view/gps.html',
|
||||
link: function (scope, element, attrs, interfacePanel) {
|
||||
|
||||
|
||||
},
|
||||
controller: function ($scope, $snapshot) {
|
||||
|
||||
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
directives.logo = function () {
|
||||
return {
|
||||
restrict: "E",
|
||||
replace: true,
|
||||
template: "<img src=\"img/image1.jpg\" />test</h1>",
|
||||
link: function (scope, element, attrs, interfacePanel) {
|
||||
|
||||
|
||||
},
|
||||
controller: function ($scope, $snapshot) {
|
||||
|
||||
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
app.directive(directives);
|
||||
|
||||
|
||||
});
|
||||
|
||||
//# sourceMappingURL=app.js.map
|
||||
1
node_modules/gulp-rev-all/test/fixtures/config1/script/app.js.map
generated
vendored
Normal file
1
node_modules/gulp-rev-all/test/fixtures/config1/script/app.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"application.js","sources":""]}
|
||||
5
node_modules/gulp-rev-all/test/fixtures/config1/script/layout.js
generated
vendored
Normal file
5
node_modules/gulp-rev-all/test/fixtures/config1/script/layout.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
exports.hello = function() {
|
||||
return 'Hello World'
|
||||
};
|
||||
1
node_modules/gulp-rev-all/test/fixtures/config1/script/lodash.js
generated
vendored
Normal file
1
node_modules/gulp-rev-all/test/fixtures/config1/script/lodash.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
lodash.js
|
||||
35
node_modules/gulp-rev-all/test/fixtures/config1/script/main.js
generated
vendored
Normal file
35
node_modules/gulp-rev-all/test/fixtures/config1/script/main.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/*global require*/
|
||||
'use strict';
|
||||
|
||||
|
||||
require.config({
|
||||
paths: {
|
||||
|
||||
angular: '../lib/angular',
|
||||
bootstrap: '/lib/bootstrap',
|
||||
jquery: '../lib/jquery',
|
||||
lodash: 'lodash',
|
||||
|
||||
|
||||
// bootstrap: '//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min',
|
||||
// jquery: '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min',
|
||||
// underscore: '//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min',
|
||||
// lodash: '//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.underscore.min',
|
||||
|
||||
},
|
||||
shim: {
|
||||
lodash: { exports: '_' },
|
||||
jquery: { exports: 'jQuery' },
|
||||
angular: { deps: ['jquery'], exports: 'angular' },
|
||||
bootstrap: { deps: ['jquery'] }
|
||||
}
|
||||
});
|
||||
|
||||
require([
|
||||
'angular',
|
||||
'app'
|
||||
], function (angular) {
|
||||
|
||||
angular.bootstrap(document, ['app']);
|
||||
|
||||
});
|
||||
7
node_modules/gulp-rev-all/test/fixtures/config1/script/no_space_after_map.js
generated
vendored
Normal file
7
node_modules/gulp-rev-all/test/fixtures/config1/script/no_space_after_map.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
exports.no_space_after_map = function() {
|
||||
return 'The purpose of this file is to test regex replace on source map statement'
|
||||
};
|
||||
|
||||
//# sourceMappingURL=no_space_after_map.js.map
|
||||
1
node_modules/gulp-rev-all/test/fixtures/config1/script/no_space_after_map.js.map
generated
vendored
Normal file
1
node_modules/gulp-rev-all/test/fixtures/config1/script/no_space_after_map.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"no_space_after_map.js","sources":""]}
|
||||
6
node_modules/gulp-rev-all/test/fixtures/config1/script/short.js
generated
vendored
Normal file
6
node_modules/gulp-rev-all/test/fixtures/config1/script/short.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
exports.hello = function() {
|
||||
return 'Hello World'
|
||||
};
|
||||
|
||||
6
node_modules/gulp-rev-all/test/fixtures/config1/script/shortDuplicate.js
generated
vendored
Normal file
6
node_modules/gulp-rev-all/test/fixtures/config1/script/shortDuplicate.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
exports.hello = function() {
|
||||
return 'Hello!'
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user