This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const steps = [ | |
{ | |
number: 1, | |
title: 'Oplysninger om dig', | |
state: 'completed' | |
}, | |
{ | |
number: 2, | |
title: 'Kontaktoplysninger', | |
state: 'active' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(['jquery'], function (jq) { | |
return jq.noConflict(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map: { | |
// '*' means all modules will get 'jquery-private' | |
// for their 'jquery' dependency. | |
'*': { 'jquery': 'jquery-private' }, | |
// 'jquery-private' wants the real jQuery module though. | |
'jquery-private': { 'jquery': 'jquery' } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs) | |
[Bb]in/ | |
[Bb]in_x64/ | |
[Bb]in_Net4/ | |
[Oo]bj/ | |
# mstest test results | |
TestResults | |
## Ignore Visual Studio temporary files, build results, and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
=================================== | |
Pentia (PT) Namespace | |
=================================== | |
*/ | |
var PT = PT || {}; | |
/* | |
=================================== | |
PT.FormInterceptEnter | |
=================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = 'http://testwebserv30.ft.dk/fttdservice'; | |
$(document).ready(function() { | |
$("#tabs").tabs(); | |
// shortcut for insert | |
shortcut.add("Ctrl+i", function() { | |
var selectednodes = $.jstree.reference('#jstree').get_selected(true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Task: clean | |
// Description: clean static dir for gulp generated files "rimraf": "^2.2.8", | |
// ----------------------------------------------------------------------- | |
var frontend = require('../local_modules/frontend-builder.js'); | |
var path = require('path'); | |
var gulp = require('gulp'); | |
var rimraf = require('rimraf'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"name": "custom", | |
"dest": "scripts.min.js", | |
"destFolder": "www/Components/Project/Design/scripts", | |
"bundle": [ | |
"/Components/Project/Design/scripts/script-in-bundle.js", | |
"/Components/Project/Design/scripts/another-script-in-bundle.js", | |
"/Components/Project/Design/scripts/yet-another-script-in-bundle.js" | |
] | |
}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- scripts.min.js bundle in prod --> | |
<script src="/Components/Project/Design/scripts/scripts.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- scripts.min.js bundle in development --> | |
<script src="/Components/Project/Design/scripts/script-in-bundle.js"></script> | |
<script src="/Components/Project/Design/scripts/another-script-in-bundle.js"></script> | |
<script src="/Components/Project/Design/scripts/yet-another-script-in-bundle.js"></script> |
NewerOlder