From ab88a4e64f5ca7db1d6950773e926953e6a5555a Mon Sep 17 00:00:00 2001 From: Johann-S Date: Tue, 3 Feb 2015 20:30:56 +0100 Subject: [PATCH] Add file common.js --- Gruntfile.js | 1 + js/common.js | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100755 js/common.js diff --git a/Gruntfile.js b/Gruntfile.js index e4a56eb..b260f40 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -50,6 +50,7 @@ module.exports = function (grunt) { banner: '<%= banner %>' }, src: [ + 'js/common.js', 'js/modals.js', 'js/popovers.js', 'js/push.js', diff --git a/js/common.js b/js/common.js new file mode 100755 index 0000000..3411e6c --- /dev/null +++ b/js/common.js @@ -0,0 +1,12 @@ +/* ======================================================================== + * Ratchet: modals.js v2.0.2 + * http://goratchet.com/ + * ======================================================================== + * Copyright 2015 Connor Sears + * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE) + * ======================================================================== */ + +!(function () { + 'use strict'; + +}());