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
<?xml version='1.0' encoding='utf-8'?> | |
<widget id="..." version="1.4.3" xmlns="http://www.w3.org/ns/widgets"> | |
<platform name="android"> | |
<hook src="scripts/fixAndroidDeepLinks.js" type="after_prepare" /> | |
</platform> | |
</widget> |
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 gulp = require('gulp'); | |
const sass = require('gulp-sass'); | |
const run = require('gulp-run'); | |
const browserSync = require('browser-sync').create(); | |
gulp.task('css', function () { | |
return gulp.src('src/style.scss') | |
.pipe(sass()) | |
.pipe(gulp.dest('styleguide/css')); | |
}); |
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
(function($, Backbone){ | |
var MyPluginView = Backbone.View.extend({ | |
initialize: function(options) { | |
}, | |
render: function() { | |
}, | |
events: { | |
} | |
}); | |
$.fn.myPlugin = function(options) { |