Skip to content
This repository was archived by the owner on Nov 30, 2018. It is now read-only.

making some changes allow lint to be engaged #253

Merged
merged 1 commit into from
Aug 14, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platforms/Mimosa/StarterKit/assets/javascripts/app/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requirejs.config({
requirejs.config({
paths: {
'text': '../vendor/requirejs-text/text',
'knockout': '../vendor/knockout.js/knockout',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(['plugins/http', 'durandal/app', 'knockout'], function (http, app, ko) {
define(['plugins/http', 'durandal/app', 'knockout'], function (http, app, ko) {
//Note: This module exports an object.
//That means that every module that "requires" it will get the same object instance.
//If you wish to be able to create multiple instances, instead export a function.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(['plugins/router', 'durandal/app'], function (router, app) {
define(['plugins/router', 'durandal/app'], function (router, app) {
return {
router: router,
search: function() {
Expand All @@ -11,7 +11,7 @@
{ route: '', title:'Welcome', moduleId: 'viewmodels/welcome', nav: true },
{ route: 'flickr', moduleId: 'viewmodels/flickr', nav: true }
]).buildNavigationModel();

return router.activate();
}
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(function() {
define(function() {
var ctor = function () {
this.displayName = 'Welcome to the Durandal Starter Kit!';
this.description = 'Durandal is a cross-device, cross-platform client framework written in JavaScript and designed to make Single Page Applications (SPAs) easy to create and maintain.';
Expand Down
22 changes: 11 additions & 11 deletions platforms/Mimosa/StarterKit/assets/stylesheets/durandal.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@

.modalBlockout {
position: fixed;
top: 0px;
left: 0px;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
opacity: 0;

pointer-events: auto;

-webkit-backface-visibility: hidden;
-webkit-transition: opacity 0.1s linear;
-moz-transition: opacity 0.1s linear;

-webkit-transition: opacity 0.1s linear;
-moz-transition: opacity 0.1s linear;
-o-transition: opacity 0.1s linear;
transition: opacity 0.1s linear;
transition: opacity 0.1s linear;
}

.modalHost {
top: 50%;
left: 50%;
position: fixed;
opacity: 0;

-webkit-backface-visibility: hidden;

-webkit-transition: opacity 0.1s linear;
-moz-transition: opacity 0.1s linear;
-webkit-transition: opacity 0.1s linear;
-moz-transition: opacity 0.1s linear;
-o-transition: opacity 0.1s linear;
transition: opacity 0.1s linear;
}
Expand Down
4 changes: 2 additions & 2 deletions platforms/Mimosa/StarterKit/assets/stylesheets/starterkit.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
.splash .message {
font-size: 5em;
line-height: 1.5em;
-webkit-text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 15px;
text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 15px;
-webkit-text-shadow: rgba(0, 0, 0, 0.5) 0 0 15px;
text-shadow: rgba(0, 0, 0, 0.5) 0 0 15px;
text-transform: uppercase;
}

Expand Down
1 change: 1 addition & 0 deletions platforms/Mimosa/StarterKit/mimosa-config.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exports.config =
'requirebuild-include'
'requirebuild-textplugin-include'
'bower'
'lint'
]

watch:
Expand Down