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
<?PHP | |
###################################################### | |
# # | |
# Forms To Go 4.5.4 # | |
# http://www.bebosoft.com/ # | |
# # | |
###################################################### | |
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
<?PHP | |
###################################################### | |
# # | |
# Forms To Go 4.5.4 # | |
# http://www.bebosoft.com/ # | |
# # | |
###################################################### | |
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
span monitors:i:1 | |
screen mode id:i:1 | |
use multimon:i:1 | |
desktopwidth:i:1920 | |
desktopheight:i:1080 | |
session bpp:i:32 | |
winposstr:s:0,1,2066,89,2866,689 | |
compression:i:1 | |
keyboardhook:i:2 | |
audiocapturemode:i:0 |
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
module.exports = function (grunt) { | |
// show elapsed time at the end | |
require('time-grunt')(grunt); | |
// load all grunt tasks | |
require('load-grunt-tasks')(grunt); | |
//MODIFIED: add require for connect-modewrite | |
var modRewrite = require('connect-modrewrite'); | |
grunt.initConfig({ |
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
Show hidden characters
{ | |
"version": "1.6.2", | |
"compilerOptions": { | |
"target": "es6", | |
"module": "commonjs", | |
"declaration": false, | |
"noImplicitAny": false, | |
"removeComments": true, | |
"noLib": false, | |
"emitDecoratorMetadata": 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
import { Component, OnInit, ElementRef, Input } from 'angular2/core'; | |
import { NgControl, ControlValueAccessor } from 'angular2/common'; | |
import "jquery"; | |
import "jquery-ui"; | |
declare var jQuery: any; | |
@Component({ | |
selector: '.datepicker', |
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
'use strict'; | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
gulp.task('sass', function () { | |
return gulp.src('./styles/bootstrap.scss') | |
.pipe(sass().on('error', sass.logError)) | |
.pipe(gulp.dest('./public/css')); | |
}); |
OlderNewer