muu

DEPRECATED lightweight JS framework
git clone https://git.ce9e.org/muu.git

commit
c1be5407109260e4c53463c1f8613fafa38bb5ab
parent
8e1602f5e533a5866b7d729a0896ac95ee9edbea
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-08-28 05:28
normalize define() calls

Diffstat

M src/muu-directive.js 2 +-
M src/muu-dom-helpers.js 2 +-
M src/muu-js-helpers.js 2 +-
M src/muu-location.js 2 +-
M src/muu-search.js 2 +-
M src/muu-template.js 2 +-
M src/muu-update-dom.js 2 +-
M src/muu.js 2 +-

8 files changed, 8 insertions, 8 deletions


diff --git a/src/muu-directive.js b/src/muu-directive.js

@@ -3,7 +3,7 @@
    3     3  * @module muu-directive
    4     4  * @ignore
    5     5  */
    6    -1 define(['muu-dom-helpers', 'muu-js-helpers', 'muu-update-dom'], function($, _, updateDOM) {
   -1     6 define('muu-directive', ['muu-dom-helpers', 'muu-js-helpers', 'muu-update-dom'], function($, _, updateDOM) {
    7     7     "use strict";
    8     8 
    9     9     /**

diff --git a/src/muu-dom-helpers.js b/src/muu-dom-helpers.js

@@ -2,7 +2,7 @@
    2     2  * DOM related helper functions
    3     3  * @module muu-dom-helpers
    4     4  */
    5    -1 define(['muu-js-helpers'], function(_) {
   -1     5 define("muu-dom-helpers", ['muu-js-helpers'], function(_) {
    6     6     "use strict";
    7     7 
    8     8     var entityMap = {

diff --git a/src/muu-js-helpers.js b/src/muu-js-helpers.js

@@ -2,7 +2,7 @@
    2     2  * Minimal implementation of an underscore/lodash subset.
    3     3  * @module muu-js-helpers
    4     4  */
    5    -1 define(function() {
   -1     5 define('muu-js-helpers', [], function() {
    6     6     "use strict";
    7     7 
    8     8     /** @lends module:muu-js-helpers */

diff --git a/src/muu-location.js b/src/muu-location.js

@@ -2,7 +2,7 @@
    2     2  * angular inspired location service.
    3     3  * @module muu-location
    4     4  */
    5    -1 define(['muu-search'], function(q) {
   -1     5 define('muu-location', ['muu-search'], function(q) {
    6     6     "use strict";
    7     7 
    8     8     /** @lends module:muu-location */

diff --git a/src/muu-search.js b/src/muu-search.js

@@ -1,4 +1,4 @@
    1    -1 define(['muu-js-helpers'], function(_) {
   -1     1 define('muu-search', ['muu-js-helpers'], function(_) {
    2     2     "use strict";
    3     3 
    4     4     var q = {};

diff --git a/src/muu-template.js b/src/muu-template.js

@@ -61,7 +61,7 @@
   61    61  * @param {object} data
   62    62  * @return {string}
   63    63  */
   64    -1 define(['muu-js-helpers', 'muu-dom-helpers'], function(_, $) {
   -1    64 define('muu-template', ['muu-js-helpers', 'muu-dom-helpers'], function(_, $) {
   65    65     "use strict";
   66    66 
   67    67     var openTag = '{{';

diff --git a/src/muu-update-dom.js b/src/muu-update-dom.js

@@ -21,7 +21,7 @@
   21    21  * @param {DOMElement} target
   22    22  * @param {DOMElement} source
   23    23  */
   24    -1 define(['muu-js-helpers'], function(_) {
   -1    24 define('muu-update-dom', ['muu-js-helpers'], function(_) {
   25    25     "use strict";
   26    26 
   27    27     var updateAttributes = function(target, source) {

diff --git a/src/muu.js b/src/muu.js

@@ -7,7 +7,7 @@
    7     7  *
    8     8  * @module muu
    9     9  */
   10    -1 define(['muu-registry', 'muu-dom-helpers', 'muu-location'], function(Registry, $, $location) {
   -1    10 define('muu', ['muu-registry', 'muu-dom-helpers', 'muu-location'], function(Registry, $, $location) {
   11    11     "use strict";
   12    12 
   13    13     var module = {};